aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2006-06-23 10:38:24 +0000
committerEli Zaretskii2006-06-23 10:38:24 +0000
commite0d8fc91ce46354816740492a21af188f008ffcf (patch)
tree8ad7d52b4c4d97d729a3599f0b52cd44a6452336
parentf83caf703ce7369ce4f697b18eced8e2d1e4670e (diff)
downloademacs-e0d8fc91ce46354816740492a21af188f008ffcf.tar.gz
emacs-e0d8fc91ce46354816740492a21af188f008ffcf.zip
Fix a comment.
-rw-r--r--lisp/files.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 659b34640c4..f1b2468f39b 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -1607,7 +1607,7 @@ Do you want to revisit the file normally now? ")
1607 (kill-buffer buf) 1607 (kill-buffer buf)
1608 (signal 'file-error (list "File is not readable" 1608 (signal 'file-error (list "File is not readable"
1609 filename))) 1609 filename)))
1610 ;; Run find-file-not-found-hooks until one returns non-nil. 1610 ;; Run find-file-not-found-functions until one returns non-nil.
1611 (or (run-hook-with-args-until-success 'find-file-not-found-functions) 1611 (or (run-hook-with-args-until-success 'find-file-not-found-functions)
1612 ;; If they fail too, set error. 1612 ;; If they fail too, set error.
1613 (setq error t))))) 1613 (setq error t)))))