** Fix or document the shortcoming of easymenu and :suffix.
http://lists.gnu.org/archive/html/emacs-devel/2007-11/msg01857.html
+** Fix problem with mode-name in SGML mode.
+If mode-name stays non-string, add NEWS entry and doc fix.
+http://lists.gnu.org/archive/html/emacs-devel/2007-11/msg02048.html
+
* DOCUMENTATION
** Check the Emacs Tutorial.
+2007-12-09 Glenn Morris <rgm@gnu.org>
+
+ * emulation/viper-init.el (top-level): Use dolist rather than mapc
+ in make-variable-frame-local call.
+
2007-12-08 Dan Nicolaescu <dann@ics.uci.edu>
* mail/hashcash.el (declare-function):
(defvar viper-vi-state-cursor-color nil)
(if (fboundp 'make-variable-frame-local)
- (mapc 'make-variable-frame-local
- '(viper-replace-overlay-cursor-color
- viper-insert-state-cursor-color
- viper-emacs-state-cursor-color
- viper-vi-state-cursor-color)))
-
+ (dolist (v '(viper-replace-overlay-cursor-color
+ viper-insert-state-cursor-color viper-emacs-state-cursor-color
+ viper-vi-state-cursor-color))
+ (make-variable-frame-local v)))
(viper-deflocalvar viper-replace-overlay nil "")
(put 'viper-replace-overlay 'permanent-local t)