# HG changeset patch # User Katsumi Yamaoka # Date 1289439905 0 # Node ID 91870c82d54798bbf6c1832627c4cfa58482e708 # Parent 0b07548fdfe0788f5acdcba320be86dc53645cc1 gnus-art.el (article-treat-non-ascii): Make it work for XEmacs (at least 21.5). smime.el (from): Declare it again for XEmacs. diff -r 0b07548fdfe0 -r 91870c82d547 lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Wed Nov 10 23:57:24 2010 +0000 +++ b/lisp/gnus/ChangeLog Thu Nov 11 01:45:05 2010 +0000 @@ -1,3 +1,10 @@ +2010-11-11 Katsumi Yamaoka + + * gnus-art.el (article-treat-non-ascii): Make it work for XEmacs (at + least 21.5). + + * smime.el (from): Declare it again for XEmacs. + 2010-11-10 Lars Magne Ingebrigtsen * message.el (message-resend): Don't disable encoding unless it's diff -r 0b07548fdfe0 -r 91870c82d547 lisp/gnus/gnus-art.el --- a/lisp/gnus/gnus-art.el Wed Nov 10 23:57:24 2010 +0000 +++ b/lisp/gnus/gnus-art.el Thu Nov 11 01:45:05 2010 +0000 @@ -2120,7 +2120,7 @@ "Translate many Unicode characters into their ASCII equivalents." (interactive) (require 'org-entities) - (let ((table (make-char-table nil))) + (let ((table (make-char-table (if (featurep 'xemacs) 'generic)))) (dolist (elem org-entities) (when (and (listp elem) (= (length (nth 6 elem)) 1)) @@ -2132,7 +2132,9 @@ (let ((inhibit-read-only t) replace) (while (not (eobp)) - (if (not (setq replace (aref table (following-char)))) + (if (not (setq replace (if (featurep 'xemacs) + (get-char-table (following-char) table) + (aref table (following-char))))) (forward-char 1) (delete-char 1) (insert replace)))))))) diff -r 0b07548fdfe0 -r 91870c82d547 lisp/gnus/smime.el --- a/lisp/gnus/smime.el Wed Nov 10 23:57:24 2010 +0000 +++ b/lisp/gnus/smime.el Thu Nov 11 01:45:05 2010 +0000 @@ -426,6 +426,8 @@ (insert-buffer-substring smime-details-buffer) nil)) +(defvar from) ;; Necessary for XEmacs to silence the byte compiler. + (defun smime-decrypt-region (b e keyfile) "Decrypt S/MIME message in region between B and E with key in KEYFILE. On success, replaces region with decrypted data and return non-nil.