Index: rfc2047.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/rfc2047.el,v retrieving revision 6.45 diff -u -r6.45 rfc2047.el --- rfc2047.el 3 May 2003 14:20:49 -0000 6.45 +++ rfc2047.el 4 May 2003 00:06:35 -0000 @@ -246,11 +246,7 @@ ;; skip to the end of regions appropriately. Nb. ietf-drums does ;; things differently. (defconst rfc2047-syntax-table - ;; This is what we should do, but XEmacs doesn't support the optional - ;; arg of `make-syntax-table': -;; (let ((table (make-char-table 'syntax-table '(2)))) - (let ((table (make-char-table 'syntax-table))) - (map-char-table (lambda (k v) (aset table k '(2))) table) + (let ((table (make-syntax-table '(2)))) (modify-syntax-entry ?\\ "\\" table) (modify-syntax-entry ?\" "\"" table) (modify-syntax-entry ?\( "." table)