# HG changeset patch # User Andreas Schwab # Date 1293722134 -3600 # Node ID ad2a8fce0d7a80678f8869cdbd647ff836ce7d3a # Parent 5879f36f423bc94858b6d918e9ab4f3429e44e9f * lisp/emacs-lisp/rx.el (rx-syntax): Fix typo. diff -r 5879f36f423b -r ad2a8fce0d7a lisp/ChangeLog --- a/lisp/ChangeLog Thu Dec 30 15:58:32 2010 +0100 +++ b/lisp/ChangeLog Thu Dec 30 16:15:34 2010 +0100 @@ -1,3 +1,7 @@ +2010-12-30 Andreas Schwab + + * emacs-lisp/rx.el (rx-syntax): Fix typo. + 2010-12-30 Tassilo Horn * doc-view.el (doc-view-toggle-display): Perform rassq-delete-all diff -r 5879f36f423b -r ad2a8fce0d7a lisp/emacs-lisp/rx.el --- a/lisp/emacs-lisp/rx.el Thu Dec 30 15:58:32 2010 +0100 +++ b/lisp/emacs-lisp/rx.el Thu Dec 30 16:15:34 2010 +0100 @@ -767,7 +767,7 @@ (unless syntax ;; Try sregex compatibility. (cond - ((character sym) (setq syntax sym)) + ((characterp sym) (setq syntax sym)) ((symbolp sym) (let ((name (symbol-name sym))) (if (= 1 (length name))