]> git.eshelyaron.com Git - emacs.git/commitdiff
(visit-tags-table-buffer, tags-loop-scan, complete-tag): Fix error format
authorKarl Heuer <kwzh@gnu.org>
Mon, 29 Jan 1996 23:14:52 +0000 (23:14 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 29 Jan 1996 23:14:52 +0000 (23:14 +0000)
string.

lisp/progmodes/etags.el

index c45d59631ab7c3e50232c91821bcc4d3c6831d86..64f2e1d7afbf790e1946378f110ebdf4ecedb583 100644 (file)
@@ -423,7 +423,8 @@ Returns t if it visits a tags table, or nil if there are no more in the list."
   (cond ((eq cont 'same)
         ;; Use the ambient value of tags-file-name.
         (or tags-file-name
-            (error (substitute-command-keys
+            (error "%s"
+                   (substitute-command-keys
                     (concat "No tags table in use!  "
                             "Use \\[visit-tags-table] to select one.")))))
 
@@ -1308,7 +1309,8 @@ if the file was newly read in, the value is the filename."
   "Form for `tags-loop-continue' to eval to change one file.")
 
 (defvar tags-loop-scan
-  '(error (substitute-command-keys
+  '(error "%s"
+         (substitute-command-keys
           "No \\[tags-search] or \\[tags-query-replace] in progress."))
   "Form for `tags-loop-continue' to eval to scan one file.
 If it returns non-nil, this file needs processing by evalling
@@ -1555,7 +1557,8 @@ for \\[find-tag] (which see)."
   (interactive)
   (or tags-table-list
       tags-file-name
-      (error (substitute-command-keys
+      (error "%s"
+            (substitute-command-keys
              "No tags table loaded.  Try \\[visit-tags-table].")))
   (let ((pattern (funcall (or find-tag-default-function
                              (get major-mode 'find-tag-default-function)