aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2010-10-23 01:38:34 +0200
committerJuanma Barranquero <[email protected]>2010-10-23 01:38:34 +0200
commit88dbda519d46ea8902e7f91a6d217387cfe5a2c0 (patch)
treeeba434f1857f322b46b2be65f2dcbff4d3b9d135 /src
parentcd5ad71278628d0b71ba13032def9fe5b17ada14 (diff)
Fix typos.
* doc/misc/gnus.texi (Group Parameters, Buttons): Fix typos. * lisp/org/org-exp.el (org-export-visible): * lisp/progmodes/dcl-mode.el (dcl-electric-reindent-regexps): Fix typos in docstrings.
Diffstat (limited to 'src')
-rw-r--r--src/atimer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/atimer.c b/src/atimer.c
index 432e2590da..bcd38632eb 100644
--- a/src/atimer.c
+++ b/src/atimer.c
@@ -175,9 +175,9 @@ cancel_atimer (timer)
for (t = *list, prev = NULL; t && t != timer; prev = t, t = t->next)
;
- /* If it is, take it off the its list, and put in on the
- free-list. We don't bother to arrange for setting a
- different alarm time, since a too early one doesn't hurt. */
+ /* If it is, take it off its list, and put in on the free-list.
+ We don't bother to arrange for setting a different alarm time,
+ since a too early one doesn't hurt. */
if (t)
{
if (prev)