diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-10-23 01:38:34 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-10-23 01:38:34 +0200 |
commit | 88dbda519d46ea8902e7f91a6d217387cfe5a2c0 (patch) | |
tree | eba434f1857f322b46b2be65f2dcbff4d3b9d135 /src/atimer.c | |
parent | cd5ad71278628d0b71ba13032def9fe5b17ada14 (diff) | |
download | emacs-88dbda519d46ea8902e7f91a6d217387cfe5a2c0.tar.gz |
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/atimer.c')
-rw-r--r-- | src/atimer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/atimer.c b/src/atimer.c index 432e2590dad..bcd38632ebd 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) |