(copyright-update-year): Don't let y-or-n-p move point. (Bug#2209)
authorGlenn Morris <rgm@gnu.org>
Tue, 17 Feb 2009 03:02:25 +0000 (03:02 +0000)
committerGlenn Morris <rgm@gnu.org>
Tue, 17 Feb 2009 03:02:25 +0000 (03:02 +0000)
lisp/ChangeLog
lisp/emacs-lisp/copyright.el

index 362f223..77aa43c 100644 (file)
@@ -1,5 +1,8 @@
 2009-02-17  Glenn Morris  <rgm@gnu.org>
 
+       * emacs-lisp/copyright.el (copyright-update-year): Don't let y-or-n-p
+       move point.  (Bug#2209)
+
        * mail/rmailout.el (rmail-fields-not-to-output): Doc fix.
        (rmail-delete-unwanted-fields): Ignore case.  Use line-beg-pos.
        (rmail-output, rmail-output-as-seen): Change the "from-gnus" argument to
index 36864e9..04020d6 100644 (file)
@@ -157,11 +157,13 @@ When this is `function', only ask when called non-interactively."
     (unless (string= (buffer-substring (- (match-end 3) 2) (match-end 3))
                     (substring copyright-current-year -2))
       (if (or noquery
-             (y-or-n-p (if replace
-                           (concat "Replace copyright year(s) by "
-                                   copyright-current-year "? ")
-                         (concat "Add " copyright-current-year
-                                 " to copyright? "))))
+             ;; Fixes some point-moving oddness (bug#2209).
+             (save-excursion
+               (y-or-n-p (if replace
+                             (concat "Replace copyright year(s) by "
+                                     copyright-current-year "? ")
+                           (concat "Add " copyright-current-year
+                                   " to copyright? ")))))
          (if replace
              (replace-match copyright-current-year t t nil 3)
            (let ((size (save-excursion (skip-chars-backward "0-9"))))