CVS update by michaelk packages/xemacs-packages/viper,
viper-init.el ...
xemacs-cvs at xemacs.org
xemacs-cvs at xemacs.org
Thu Nov 23 09:25:35 EST 2006
User: michaelk
Date: 06/11/23 15:25:35
Modified: packages/xemacs-packages/viper viper.el viper-keym.el
viper-init.el ChangeLog
Log:
* viper-init.el, viper-keym.el, viper.el: capitalize emacs
Revision Changes Path
1.41 +7 -7 XEmacs/packages/xemacs-packages/viper/viper.el
Index: viper.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/viper/viper.el,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -p -r1.40 -r1.41
--- viper.el 2006/10/23 19:25:39 1.40
+++ viper.el 2006/11/23 14:25:32 1.41
@@ -359,7 +359,7 @@ user decide when to invoke Viper in a ma
(defcustom viper-mode (cond (noninteractive nil)
(t 'ask))
"To Viperize or not to Viperize.
-If t, viperize emacs. If nil -- don't. If `ask', ask the user.
+If t, viperize Emacs. If nil -- don't. If `ask', ask the user.
This variable is used primatily when Viper is being loaded.
Must be set in `~/.emacs' before Viper is loaded.
@@ -502,10 +502,10 @@ unless it is coming up in a wrong Viper
The list has the structure: ((mode viper-state keymap) (mode viper-state
keymap) ...). If `mode' is on the list, the `kemap' will be made active (on
the minor-mode-map-alist) in the specified viper state.
-If you change this list, have to restart emacs for the change to take effect.
-However, if you did the change through the customization widget, then emacs
+If you change this list, have to restart Emacs for the change to take effect.
+However, if you did the change through the customization widget, then Emacs
needs to be restarted only if you deleted a triple mode-state-keymap from the
-list. No need to restart emacs in case of insertion or modification of an
+list. No need to restart Emacs in case of insertion or modification of an
existing triple."
:type '(repeat
(list symbol
@@ -891,7 +891,7 @@ It also can't undo some Viper settings."
(eval-after-load
"passwd"
'(defadvice read-passwd-1 (before viper-passwd-ad activate)
- "Switch to emacs state while reading password."
+ "Switch to Emacs state while reading password."
(viper-change-state-to-emacs)))
(defadvice self-insert-command (around viper-self-insert-ad activate)
@@ -939,7 +939,7 @@ It also can't undo some Viper settings."
(eval-after-load
"rmailedit"
'(defadvice rmail-cease-edit (after viper-rmail-advice activate)
- "Switch to emacs state when done editing message."
+ "Switch to Emacs state when done editing message."
(viper-change-state-to-emacs)))
;; In case RMAIL was loaded before Viper.
(defadvice rmail-cease-edit (after viper-rmail-advice activate)
@@ -1121,7 +1121,7 @@ It also can't undo some Viper settings."
(save-window-excursion
(with-output-to-temp-buffer " *viper-info*"
(princ "
-You have loaded Viper, and are about to Viperize your emacs!
+You have loaded Viper, and are about to Viperize your Emacs!
Viper is a Package for Emacs Rebels and a venomous VI PERil,
1.15 +3 -3 XEmacs/packages/xemacs-packages/viper/viper-keym.el
Index: viper-keym.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/viper/viper-keym.el,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -p -r1.14 -r1.15
--- viper-keym.el 2006/02/19 03:23:13 1.14
+++ viper-keym.el 2006/11/23 14:25:33 1.15
@@ -144,7 +144,7 @@ viper-insert-basic-map. Not recommended
"Auxiliary map for global user-defined bindings in Emacs state.")
(defvar viper-emacs-kbd-map (make-sparse-keymap)
- "This keymap keeps Vi-style kbd macros for emacs mode.")
+ "This keymap keeps Vi-style kbd macros for Emacs mode.")
(viper-deflocalvar viper-emacs-local-user-map (make-sparse-keymap)
"Auxiliary map for local user-defined bindings in Emacs state.")
@@ -160,10 +160,10 @@ viper-insert-basic-map. Not recommended
;; Some important keys used in viper
(defcustom viper-toggle-key [(control ?z)] ; "\C-z"
- "The key used to change states from emacs to Vi and back.
+ "The key used to change states from Emacs to Vi and back.
In insert mode, this key also functions as Meta.
-Enter as a sexp. Examples: \"\\C-z\", [(control ?z)]."
+Enter as a sexp. Examples: \"\\C-z\", [(control ?z)]."
:type 'sexp
:group 'viper
:set (lambda (symbol value)
1.23 +1 -1 XEmacs/packages/xemacs-packages/viper/viper-init.el
Index: viper-init.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/viper/viper-init.el,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -p -r1.22 -r1.23
--- viper-init.el 2006/08/25 16:48:42 1.22
+++ viper-init.el 2006/11/23 14:25:33 1.23
@@ -438,7 +438,7 @@ delete the text being replaced, as in st
;; confused in some cases. So, this var is nulled for now.
;; (defcustom viper-emacs-state-cursor-color "Magenta"
(defcustom viper-emacs-state-cursor-color nil
- "Cursor color when Viper is in emacs state."
+ "Cursor color when Viper is in Emacs state."
:type 'string
:group 'viper)
(if (fboundp 'make-variable-frame-local)
1.82 +5 -0 XEmacs/packages/xemacs-packages/viper/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/viper/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -p -r1.81 -r1.82
--- ChangeLog 2006/10/31 08:36:17 1.81
+++ ChangeLog 2006/11/23 14:25:33 1.82
@@ -1,3 +1,8 @@
+2006-11-23 Michael Kifer <kifer at cs.stonybrook.edu>
+
+ * viper-init.el, viper-keym.el, viper.el: capitalize emacs
+
+
2006-10-31 Norbert Koch <viteno at xemacs.org>
* Makefile (VERSION): XEmacs package 1.52 released.
More information about the XEmacs-CVS
mailing list