Mercurial > emacs
comparison lisp/files.el @ 106916:401176c64983
from trunk
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 18 Jan 2010 09:58:26 +0900 |
parents | ad7558737bc7 |
children | 4b75ffbc9b2f |
comparison
equal
deleted
inserted
replaced
106915:ef4635609200 | 106916:401176c64983 |
---|---|
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 |