GNU bug report logs -
#1239
PATCH: Fix corner case of texinfo-insert-quote
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
This is an automatic notification regarding your bug report
which was filed against the emacs package:
#1239: PATCH: Fix corner case of texinfo-insert-quote
It has been closed by Glenn Morris <rgm <at> gnu.org>.
Their explanation is attached below along with your original report.
If this explanation is unsatisfactory and you have not received a
better one in a separate message then please contact Glenn Morris <rgm <at> gnu.org> by
replying to this email.
--
1239: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=1239
Emacs Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
OK; installed.
2008-12-02 Aaron S. Hawley <aaronh <at> garden.org>
* textmodes/texinfo.el (texinfo-insert-quote): Handle
corner case where point is at the beginning of the buffer. (Bug#1239)
[Message part 3 (message/rfc822, inline)]
[Message part 4 (text/plain, inline)]
Patch is attached and in-line. It would be nice to have this, in case
one tries to do quotation mark manipulation with with-temp-buffer.
Thanks for Emacs,
/a
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.14668
diff -u -r1.14668 ChangeLog
--- ChangeLog 24 Oct 2008 09:39:28 -0000 1.14668
+++ ChangeLog 24 Oct 2008 17:29:37 -0000
@@ -1,3 +1,8 @@
+2008-10-24 Aaron S. Hawley <aaronh <at> garden.org>
+
+ * textmodes/texinfo.el (texinfo-insert-quote): Handle corner
+ case where point is at the beginning of the buffer.
+
2008-10-24 Juanma Barranquero <lekktu <at> gmail.com>
* subr.el (locate-user-emacs-file): New function.
Index: textmodes/texinfo.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/textmodes/texinfo.el,v
retrieving revision 1.122
diff -u -r1.122 texinfo.el
--- textmodes/texinfo.el 6 May 2008 04:33:13 -0000 1.122
+++ textmodes/texinfo.el 24 Oct 2008 17:29:37 -0000
@@ -682,7 +682,9 @@
(if (or arg
(= (preceding-char) ?\\)
(save-excursion
- (backward-char (length texinfo-open-quote))
+ (if (> (point) (length texinfo-open-quote))
+ (backward-char (length texinfo-open-quote))
+ (goto-char (point-min)))
(when (or (looking-at texinfo-open-quote)
(looking-at texinfo-close-quote))
(delete-char (length texinfo-open-quote))
@@ -694,7 +696,8 @@
(setq in-env t)))))
(self-insert-command (prefix-numeric-value arg))
(insert
- (if (memq (char-syntax (preceding-char)) '(?\( ?> ?\s))
+ (if (or (bobp) ;; (eq (preceding-char) 0)
+ (memq (char-syntax (preceding-char)) '(?\( ?> ?\s)))
texinfo-open-quote
texinfo-close-quote)))))
[texinfo.el-bobp.diff (text/plain, inline)]
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.14668
diff -u -r1.14668 ChangeLog
--- ChangeLog 24 Oct 2008 09:39:28 -0000 1.14668
+++ ChangeLog 24 Oct 2008 17:29:37 -0000
@@ -1,3 +1,8 @@
+2008-10-24 Aaron S. Hawley <aaronh <at> garden.org>
+
+ * textmodes/texinfo.el (texinfo-insert-quote): Handle corner
+ case where point is at the beginning of the buffer.
+
2008-10-24 Juanma Barranquero <lekktu <at> gmail.com>
* subr.el (locate-user-emacs-file): New function.
Index: textmodes/texinfo.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/textmodes/texinfo.el,v
retrieving revision 1.122
diff -u -r1.122 texinfo.el
--- textmodes/texinfo.el 6 May 2008 04:33:13 -0000 1.122
+++ textmodes/texinfo.el 24 Oct 2008 17:29:37 -0000
@@ -682,7 +682,9 @@
(if (or arg
(= (preceding-char) ?\\)
(save-excursion
- (backward-char (length texinfo-open-quote))
+ (if (> (point) (length texinfo-open-quote))
+ (backward-char (length texinfo-open-quote))
+ (goto-char (point-min)))
(when (or (looking-at texinfo-open-quote)
(looking-at texinfo-close-quote))
(delete-char (length texinfo-open-quote))
@@ -694,7 +696,8 @@
(setq in-env t)))))
(self-insert-command (prefix-numeric-value arg))
(insert
- (if (memq (char-syntax (preceding-char)) '(?\( ?> ?\s))
+ (if (or (bobp) ;; (eq (preceding-char) 0)
+ (memq (char-syntax (preceding-char)) '(?\( ?> ?\s)))
texinfo-open-quote
texinfo-close-quote)))))
This bug report was last modified 16 years and 179 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.