]> git.eshelyaron.com Git - emacs.git/commitdiff
Rename new user variable `next-error-verbosity' to `next-error-verbose'
authorStephen Leake <stephen_leake@stephe-leake.org>
Sun, 14 Apr 2019 16:23:24 +0000 (09:23 -0700)
committerStephen Leake <stephen_leake@stephe-leake.org>
Sun, 14 Apr 2019 16:23:24 +0000 (09:23 -0700)
* etc/NEWS: Update entry to match renaming.

* lisp/simple.el (next-error-verbose): Rename.
(next-error, next-error-internal): Match rename.

etc/NEWS
lisp/simple.el

index 9e3d993cab0b09004482a0923ce9dcad072cae40..f41db027b282effb9cf5d6320e4d383409a867fc 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -309,7 +309,7 @@ and directory-local variables.
 longer.
 
 ---
-** next-error-verbosity controls when `next-error' outputs a message
+** next-error-verbose controls when `next-error' outputs a message
    about the error locus.
 
 \f
index 37f92540dde4feccf3babb77bfe0ec67a9709954..fb667350dcf148544bafbc1c205a45b913f1e934 100644 (file)
@@ -110,9 +110,9 @@ If non-nil, the value is passed directly to `recenter'."
   :type 'hook
   :group 'next-error)
 
-(defcustom next-error-verbosity nil
-  "If nil, `next-error' always outputs the current error buffer.
-If non-nil, the message is output only when the error buffer
+(defcustom next-error-verbose t
+  "If non-nil, `next-error' always outputs the current error buffer.
+If nil, the message is output only when the error buffer
 changes."
   :group 'next-error
   :type 'boolean
@@ -323,7 +323,7 @@ To control which errors are matched, customize the variable
         (funcall next-error-function (prefix-numeric-value arg) reset)
         (let ((prev next-error-last-buffer))
           (next-error-found buffer (current-buffer))
-          (when (or (not next-error-verbosity)
+          (when (or next-error-verbose
                     (not (eq prev next-error-last-buffer)))
             (message "%s locus from %s"
                      (cond (reset                             "First")
@@ -339,7 +339,7 @@ To control which errors are matched, customize the variable
     (funcall next-error-function 0 nil)
     (let ((prev next-error-last-buffer))
       (next-error-found buffer (current-buffer))
-      (when (or (not next-error-verbosity)
+      (when (or next-error-verbose
                 (not (eq prev next-error-last-buffer)))
         (message "Current locus from %s" next-error-last-buffer)))))