emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/woman.el,v [EMACS_22_BASE]


From: Glenn Morris
Subject: [Emacs-diffs] Changes to emacs/lisp/woman.el,v [EMACS_22_BASE]
Date: Sat, 12 Jan 2008 23:20:55 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Branch:         EMACS_22_BASE
Changes by:     Glenn Morris <gm>       08/01/12 23:20:55

Index: woman.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/woman.el,v
retrieving revision 1.58.2.2
retrieving revision 1.58.2.3
diff -u -b -r1.58.2.2 -r1.58.2.3
--- woman.el    7 Jan 2008 02:44:03 -0000       1.58.2.2
+++ woman.el    12 Jan 2008 23:20:54 -0000      1.58.2.3
@@ -3558,8 +3558,10 @@
             (setq value (funcall op value (woman-parse-numeric-value))))
            ((looking-at "[<=>]=?")     ; relational operators
             (goto-char (match-end 0))
-            (setq op (or (intern-soft (match-string 0))
-                        (intern-soft "=")))
+            (setq op (intern-soft
+                       (if (string-equal (match-string 0) "==")
+                           "="
+                         (match-string 0))))
             (setq value (if (funcall op value (woman-parse-numeric-value))
                             1 0)))
            ((memq (setq op (following-char)) '(?& ?:)) ; Boolean and / or




reply via email to

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