diff options
| author | Juanma Barranquero | 2010-10-23 01:38:34 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2010-10-23 01:38:34 +0200 |
| commit | 88dbda519d46ea8902e7f91a6d217387cfe5a2c0 (patch) | |
| tree | eba434f1857f322b46b2be65f2dcbff4d3b9d135 /src/atimer.c | |
| parent | cd5ad71278628d0b71ba13032def9fe5b17ada14 (diff) | |
| download | emacs-88dbda519d46ea8902e7f91a6d217387cfe5a2c0.tar.gz emacs-88dbda519d46ea8902e7f91a6d217387cfe5a2c0.zip | |
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) | |||
| 175 | for (t = *list, prev = NULL; t && t != timer; prev = t, t = t->next) | 175 | for (t = *list, prev = NULL; t && t != timer; prev = t, t = t->next) |
| 176 | ; | 176 | ; |
| 177 | 177 | ||
| 178 | /* If it is, take it off the its list, and put in on the | 178 | /* If it is, take it off its list, and put in on the free-list. |
| 179 | free-list. We don't bother to arrange for setting a | 179 | We don't bother to arrange for setting a different alarm time, |
| 180 | different alarm time, since a too early one doesn't hurt. */ | 180 | since a too early one doesn't hurt. */ |
| 181 | if (t) | 181 | if (t) |
| 182 | { | 182 | { |
| 183 | if (prev) | 183 | if (prev) |