aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorEli Zaretskii2025-08-02 17:33:15 +0300
committerEli Zaretskii2025-08-02 17:33:15 +0300
commit477335a10ba6d91dc1600b2a05ea202d4b851417 (patch)
tree21df3b71da267d2f6bd0260b5dffe8ee7fa56485 /lisp
parent9e3720bbb116193c7866ae04d35afa34f5451fa6 (diff)
downloademacs-477335a10ba6d91dc1600b2a05ea202d4b851417.tar.gz
emacs-477335a10ba6d91dc1600b2a05ea202d4b851417.zip
; Fix documentation of 'find-file-noselect'
* doc/lispref/files.texi (Visiting Functions): * lisp/files.el (find-file-noselect): Document that NOWARN non-nil also bypasses the file's last change verification. (Bug#79127)
Diffstat (limited to 'lisp')
-rw-r--r--lisp/files.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el
index c288a5a8b26..6544ee54ee4 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -2502,7 +2502,9 @@ be visible in the echo area."
2502If a buffer exists visiting FILENAME, return that one, but 2502If a buffer exists visiting FILENAME, return that one, but
2503verify that the file has not changed since visited or saved. 2503verify that the file has not changed since visited or saved.
2504The buffer is not selected, just returned to the caller. 2504The buffer is not selected, just returned to the caller.
2505Optional second arg NOWARN non-nil means suppress any warning messages. 2505Optional second arg NOWARN non-nil means suppress any warning messages,
2506and also don't verify the that the file has not been changed since
2507last visited or saved.
2506Optional third arg RAWFILE non-nil means the file is read literally. 2508Optional third arg RAWFILE non-nil means the file is read literally.
2507Optional fourth arg WILDCARDS non-nil means do wildcard processing 2509Optional fourth arg WILDCARDS non-nil means do wildcard processing
2508and visit all the matching files. When wildcards are actually 2510and visit all the matching files. When wildcards are actually