]> git.eshelyaron.com Git - emacs.git/commitdiff
(texinfo-insert-quote): Tweak previous change.
authorGlenn Morris <rgm@gnu.org>
Tue, 2 Dec 2008 03:36:25 +0000 (03:36 +0000)
committerGlenn Morris <rgm@gnu.org>
Tue, 2 Dec 2008 03:36:25 +0000 (03:36 +0000)
lisp/ChangeLog
lisp/textmodes/texinfo.el

index 44629dad81f17ecdb1e9c8d5febbfde377ff119d..2823fcf541f79f2d12aa33c103f4d19face67bf0 100644 (file)
@@ -1,3 +1,22 @@
+2008-12-02  Glenn Morris  <rgm@gnu.org>
+
+       * format.el (format-write-file): Rewrite doc yet again.
+
+       * progmodes/cc-vars.el (c-tab-always-indent, c-insert-tab-function):
+       Doc fix.  (Bug#1368)
+
+       * textmodes/texinfo.el (texinfo-insert-quote): Tweak previous change.
+
+2008-12-02  Aaron S. Hawley  <aaronh@garden.org>
+
+       * textmodes/texinfo.el (texinfo-insert-quote): Handle corner
+       case where point is at the beginning of the buffer.  (Bug#1239)
+
+2008-12-02  Lennart Borgman  <lennart.borgman@gmail.com>
+
+       * nxml/nxml-mode.el (nxml-indent-line): Don't re-indent lines that
+       already have the correct indentation.  (Bug#859)
+
 2008-12-02  Kenichi Handa  <handa@m17n.org>
 
        * international/uni-decomposition.el: Re-generated.
index ba61ab54008ec03d7657801869c4641b74834a29..254426d249ed417abe8b7ab72b7d644947cf94ef 100644 (file)
@@ -682,9 +682,8 @@ With prefix argument or inside @code or @example, inserts a plain \"."
     (if (or arg
            (= (preceding-char) ?\\)
            (save-excursion
-              (if (> (point) (length texinfo-open-quote))
-                  (backward-char (length texinfo-open-quote))
-                (goto-char (point-min)))
+              ;; Might be near the start of a (narrowed) buffer.
+              (ignore-errors (backward-char (length texinfo-open-quote)))
              (when (or (looking-at texinfo-open-quote)
                        (looking-at texinfo-close-quote))
                (delete-char (length texinfo-open-quote))