aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2010-12-30 16:15:34 +0100
committerAndreas Schwab2010-12-30 16:15:34 +0100
commit8ee2dc5cffd4b79007058f28dbf8fb10f02e462a (patch)
tree05ca353d5ffc1da0b3b02619e52cfab625247494
parentf9e68477a2d70c3d371bffb7c9f9f080468ca8ce (diff)
downloademacs-8ee2dc5cffd4b79007058f28dbf8fb10f02e462a.tar.gz
emacs-8ee2dc5cffd4b79007058f28dbf8fb10f02e462a.zip
* lisp/emacs-lisp/rx.el (rx-syntax): Fix typo.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/rx.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e241a65ff50..7081edf4100 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12010-12-30 Andreas Schwab <schwab@linux-m68k.org>
2
3 * emacs-lisp/rx.el (rx-syntax): Fix typo.
4
12010-12-30 Tassilo Horn <tassilo@member.fsf.org> 52010-12-30 Tassilo Horn <tassilo@member.fsf.org>
2 6
3 * doc-view.el (doc-view-toggle-display): Perform rassq-delete-all 7 * doc-view.el (doc-view-toggle-display): Perform rassq-delete-all
diff --git a/lisp/emacs-lisp/rx.el b/lisp/emacs-lisp/rx.el
index b3b88c3ce4f..cb6756a7e0f 100644
--- a/lisp/emacs-lisp/rx.el
+++ b/lisp/emacs-lisp/rx.el
@@ -767,7 +767,7 @@ of all atomic regexps."
767 (unless syntax 767 (unless syntax
768 ;; Try sregex compatibility. 768 ;; Try sregex compatibility.
769 (cond 769 (cond
770 ((character sym) (setq syntax sym)) 770 ((characterp sym) (setq syntax sym))
771 ((symbolp sym) 771 ((symbolp sym)
772 (let ((name (symbol-name sym))) 772 (let ((name (symbol-name sym)))
773 (if (= 1 (length name)) 773 (if (= 1 (length name))