without a function definition.
+2008-01-12 Glenn Morris <rgm@gnu.org>
+
+ * woman.el (woman-parse-numeric-arg): Change handling of `==':
+ can be interned without a function definition.
+
2008-01-12 Jason Rumney <jasonr@gnu.org>
* nxml/nxml-mode.el (nxml-enable-unicode-char-name-sets)
(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