Mercurial > emacs
comparison lisp/files.el @ 106877:c29352449572
Fix typos.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Sun, 17 Jan 2010 03:30:13 +0100 |
parents | ad7558737bc7 |
children | 4b75ffbc9b2f |
comparison
equal
deleted
inserted
replaced
106873:8357132d4077 | 106877:c29352449572 |
---|---|
1287 "Temporarily add FUN to `minibuffer-setup-hook' while executing BODY. | 1287 "Temporarily add FUN to `minibuffer-setup-hook' while executing BODY. |
1288 BODY should use the minibuffer at most once. | 1288 BODY should use the minibuffer at most once. |
1289 Recursive uses of the minibuffer are unaffected (FUN is not | 1289 Recursive uses of the minibuffer are unaffected (FUN is not |
1290 called additional times). | 1290 called additional times). |
1291 | 1291 |
1292 This macro actually adds an auxilliary function that calls FUN, | 1292 This macro actually adds an auxiliary function that calls FUN, |
1293 rather than FUN itself, to `minibuffer-setup-hook'." | 1293 rather than FUN itself, to `minibuffer-setup-hook'." |
1294 (declare (indent 1) (debug t)) | 1294 (declare (indent 1) (debug t)) |
1295 (let ((hook (make-symbol "setup-hook"))) | 1295 (let ((hook (make-symbol "setup-hook"))) |
1296 `(let (,hook) | 1296 `(let (,hook) |
1297 (setq ,hook | 1297 (setq ,hook |