aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Steingold2000-09-26 16:25:29 +0000
committerSam Steingold2000-09-26 16:25:29 +0000
commita62fb8a01322693c183a2072392fe67f1382af3e (patch)
treed1527a1645f90dab6248fdc094fdc1d711efeef3
parent4653b4ea686b1dd47a27bbe91a2a8216d35a2d2f (diff)
downloademacs-a62fb8a01322693c183a2072392fe67f1382af3e.tar.gz
emacs-a62fb8a01322693c183a2072392fe67f1382af3e.zip
(find-file-suppress-same-file-warnings): period in doc string
-rw-r--r--lisp/files.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 58b9a17d4ec..61b68da7359 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -970,7 +970,7 @@ whose names match the pattern."
970 "*Non-nil means suppress warning messages for symlinked files. 970 "*Non-nil means suppress warning messages for symlinked files.
971When nil, Emacs prints a warning when visiting a file that is already 971When nil, Emacs prints a warning when visiting a file that is already
972visited, but with a different name. Setting this option to t 972visited, but with a different name. Setting this option to t
973suppresses this warning " 973suppresses this warning."
974 :group 'files 974 :group 'files
975 :version "21.1" 975 :version "21.1"
976 :type 'boolean) 976 :type 'boolean)
@@ -1523,7 +1523,7 @@ If it matches, mode MODE is selected.")
1523When checking `inhibit-first-line-modes-regexps', we first discard 1523When checking `inhibit-first-line-modes-regexps', we first discard
1524from the end of the file name anything that matches one of these regexps.") 1524from the end of the file name anything that matches one of these regexps.")
1525 1525
1526(defvar auto-mode-interpreter-regexp 1526(defvar auto-mode-interpreter-regexp
1527 "#![ \t]?\\([^ \t\n]*\ 1527 "#![ \t]?\\([^ \t\n]*\
1528/bin/env[ \t]\\)?\\([^ \t\n]+\\)" 1528/bin/env[ \t]\\)?\\([^ \t\n]+\\)"
1529 "Regular expression matching interpreters, for file mode determination. 1529 "Regular expression matching interpreters, for file mode determination.
@@ -3478,7 +3478,7 @@ PATTERN that already quotes some of the special characters."
3478 (substring pattern (match-beginning 0))) 3478 (substring pattern (match-beginning 0)))
3479 beg (1+ (match-end 0))))) 3479 beg (1+ (match-end 0)))))
3480 pattern)))) 3480 pattern))))
3481 3481
3482 3482
3483(defvar insert-directory-program "ls" 3483(defvar insert-directory-program "ls"
3484 "Absolute or relative name of the `ls' program used by `insert-directory'.") 3484 "Absolute or relative name of the `ls' program used by `insert-directory'.")