all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#11528: 24.0.97; [PATCH] enriched-next-annotation: wrong-type-argument number-or-marker-p nil
@ 2012-05-21  3:10 Leo
  2012-06-23 13:39 ` Leo
  0 siblings, 1 reply; 2+ messages in thread
From: Leo @ 2012-05-21  3:10 UTC (permalink / raw)
  To: 11528

[-- Attachment #1: Type: text/plain, Size: 265 bytes --]

Yidong, could this buglet be fixed in emacs-24? This could stop people
from opening malformed enriched text files.

  Emacs -q bug-enriched.txt

| Debugger entered--Lisp error: (wrong-type-argument number-or-marker-p nil)
|   enriched-next-annotation()
|   ......


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: bug-enriched.txt --]
[-- Type: text/enriched, Size: 1150 bytes --]

Content-Type: text/enriched
Text-Width: 70

<x-read-only>09:30 -<x-color><param>DarkGoldenrod</param>EMACS</x-color>- [ 2012-05-21 ]

09:32 *** <x-color><param>Firebrick</param>bobbysmith0071 QUIT Quit: Leaving.</x-color>

09:32 *** <x-color><param>Firebrick</param>cmatei QUIT Ping timeout: 246 seconds</x-color>

09:33 *** <x-color><param>Firebrick</param>bobbysmith007 JOIN</x-color>

09:34 *** <x-color><param>Firebrick</param>fukushima QUIT Ping timeout: 265 seconds</x-color>

09:34 *** <x-color><param>Firebrick</param>cmatei JOIN</x-color>

09:37 *** <x-color><param>Firebrick</param>fukushima JOIN</x-color>

09:37 <<<x-color><param>DarkGoldenrod</param>replsos</x-color>> It's more on the "secret weapon" side of Paul
                Graham's programming language taxonomy

09:38 *** <x-color><param>Firebrick</param>arrsim JOIN</x-color>

09:43 *** <x-color><param>Firebrick</param>lars_t_h JOIN</x-color>

09:43 <<<x-color><param>DarkGoldenrod</param>homie</x-color>> what ?

09:45 *** <x-color><param>Firebrick</param>tali713` JOIN</x-color>

09:46 *** <x-color><param>Firebrick</param>tali713 QUIT Ping timeout: 240 seconds</x-color>

<

[-- Attachment #3: Type: text/plain, Size: 551 bytes --]



diff --git a/lisp/textmodes/enriched.el b/lisp/textmodes/enriched.el
index 68a99b0e..a28fcfc7 100644
--- a/lisp/textmodes/enriched.el
+++ b/lisp/textmodes/enriched.el
@@ -437,7 +437,7 @@ (defun enriched-next-annotation ()
 	      (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.

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#11528: 24.0.97; [PATCH] enriched-next-annotation: wrong-type-argument number-or-marker-p nil
  2012-05-21  3:10 bug#11528: 24.0.97; [PATCH] enriched-next-annotation: wrong-type-argument number-or-marker-p nil Leo
@ 2012-06-23 13:39 ` Leo
  0 siblings, 0 replies; 2+ messages in thread
From: Leo @ 2012-06-23 13:39 UTC (permalink / raw)
  To: 11528-done

Fixed in emacs-24.





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-06-23 13:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-21  3:10 bug#11528: 24.0.97; [PATCH] enriched-next-annotation: wrong-type-argument number-or-marker-p nil Leo
2012-06-23 13:39 ` Leo

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.