aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-07-05 00:54:32 +0000
committerRichard M. Stallman1997-07-05 00:54:32 +0000
commit4fa15f59e2434fe7956a19339a7d75c953e92313 (patch)
treefef9b61448f1b682b4071bc5139302d1c9d0bbb9
parent300c450dfb7bc6777164229b19874686284f8ce6 (diff)
downloademacs-4fa15f59e2434fe7956a19339a7d75c953e92313.tar.gz
emacs-4fa15f59e2434fe7956a19339a7d75c953e92313.zip
(next-file, tags-loop-scan): Fix error message.
(visit-tags-table-buffer, complete-tag): Likewise.
-rw-r--r--lisp/progmodes/etags.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index 47405d43df7..8b0cca71e35 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -420,8 +420,8 @@ Returns t if it visits a tags table, or nil if there are no more in the list."
420 (or tags-file-name 420 (or tags-file-name
421 (error "%s" 421 (error "%s"
422 (substitute-command-keys 422 (substitute-command-keys
423 (concat "No tags table in use! " 423 (concat "No tags table in use; "
424 "Use \\[visit-tags-table] to select one."))))) 424 "use \\[visit-tags-table] to select one")))))
425 425
426 ((eq t cont) 426 ((eq t cont)
427 ;; Find the next table. 427 ;; Find the next table.
@@ -1302,7 +1302,7 @@ if the file was newly read in, the value is the filename."
1302 (and novisit 1302 (and novisit
1303 (get-buffer " *next-file*") 1303 (get-buffer " *next-file*")
1304 (kill-buffer " *next-file*")) 1304 (kill-buffer " *next-file*"))
1305 (error "All files processed.")) 1305 (error "All files processed"))
1306 (let* ((next (car next-file-list)) 1306 (let* ((next (car next-file-list))
1307 (new (not (get-file-buffer next)))) 1307 (new (not (get-file-buffer next))))
1308 ;; Advance the list before trying to find the file. 1308 ;; Advance the list before trying to find the file.
@@ -1324,7 +1324,7 @@ if the file was newly read in, the value is the filename."
1324(defvar tags-loop-scan 1324(defvar tags-loop-scan
1325 '(error "%s" 1325 '(error "%s"
1326 (substitute-command-keys 1326 (substitute-command-keys
1327 "No \\[tags-search] or \\[tags-query-replace] in progress.")) 1327 "No \\[tags-search] or \\[tags-query-replace] in progress"))
1328 "Form for `tags-loop-continue' to eval to scan one file. 1328 "Form for `tags-loop-continue' to eval to scan one file.
1329If it returns non-nil, this file needs processing by evalling 1329If it returns non-nil, this file needs processing by evalling
1330\`tags-loop-operate'. Otherwise, move on to the next file.") 1330\`tags-loop-operate'. Otherwise, move on to the next file.")
@@ -1573,7 +1573,7 @@ for \\[find-tag] (which see)."
1573 tags-file-name 1573 tags-file-name
1574 (error "%s" 1574 (error "%s"
1575 (substitute-command-keys 1575 (substitute-command-keys
1576 "No tags table loaded. Try \\[visit-tags-table]."))) 1576 "No tags table loaded; try \\[visit-tags-table]")))
1577 (let ((pattern (funcall (or find-tag-default-function 1577 (let ((pattern (funcall (or find-tag-default-function
1578 (get major-mode 'find-tag-default-function) 1578 (get major-mode 'find-tag-default-function)
1579 'find-tag-default))) 1579 'find-tag-default)))