emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r108049: * textmodes/enriched.el (


From: Leo Liu
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r108049: * textmodes/enriched.el (enriched-next-annotation):
Date: Sat, 23 Jun 2012 21:33:44 +0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108049
fixes bug: http://debbugs.gnu.org/11528
committer: Leo Liu <address@hidden>
branch nick: emacs-24
timestamp: Sat 2012-06-23 21:33:44 +0800
message:
  * textmodes/enriched.el (enriched-next-annotation):
  Use eq.
modified:
  lisp/ChangeLog
  lisp/textmodes/enriched.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-06-23 04:48:55 +0000
+++ b/lisp/ChangeLog    2012-06-23 13:33:44 +0000
@@ -1,3 +1,8 @@
+2012-06-23  Leo Liu  <address@hidden>
+
+       * textmodes/enriched.el (enriched-next-annotation):
+       Use eq (Bug#11528).
+
 2012-06-23  Stefan Monnier  <address@hidden>
 
        * minibuffer.el (minibuffer-confirm-exit-commands):

=== modified file 'lisp/textmodes/enriched.el'
--- a/lisp/textmodes/enriched.el        2012-02-08 02:12:24 +0000
+++ b/lisp/textmodes/enriched.el        2012-06-23 13:33:44 +0000
@@ -437,7 +437,7 @@
              (progn (goto-char (match-beginning 0))
                     (not (looking-at enriched-annotation-regexp))))
     (forward-char 1)
-    (if (= ?< (char-after (point)))
+    (if (eq ?< (char-after (point)))
        (delete-char 1)
       ;; A single < that does not start an annotation is an error,
       ;; which we note and then ignore.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]