diff lisp/gnus/messagexmas.el @ 30:ec9a17fef872 r19-15b98

Import from CVS: tag r19-15b98
author cvs
date Mon, 13 Aug 2007 08:52:29 +0200
parents 4103f0995bd7
children e04119814345
line wrap: on
line diff
--- a/lisp/gnus/messagexmas.el	Mon Aug 13 08:51:58 2007 +0200
+++ b/lisp/gnus/messagexmas.el	Mon Aug 13 08:52:29 2007 +0200
@@ -43,7 +43,7 @@
 `default-toolbar', `top-toolbar', `bottom-toolbar',
 `right-toolbar', and `left-toolbar'.")
 
-(defvar message-toolbar 
+(defvar message-toolbar
   '([message-spell ispell-message t "Spell"]
     [message-help (Info-goto-node "(Message)Top") t "Message help"])
   "The message buffer toolbar.")
@@ -99,10 +99,10 @@
 
 (defun message-xmas-make-caesar-translation-table (n)
   "Create a rot table with offset N."
-  (let ((i -1) 
+  (let ((i -1)
 	(table (make-string 256 0))
-	(a (char-int ?a))
-	(A (char-int ?A)))
+	(a (char-to-int ?a))
+	(A (char-to-int ?A)))
     (while (< (incf i) 256)
       (aset table i i))
     (concat