changeset 67116:e1bb7e4a4413

2005-11-25 Michael Kifer <kifer@cs.stonybrook.edu> * viper-keym.el (viper-ESC-key): use different values in terminal and window modes. * viper.el (viper-emacs-state-mode-list): delete mail-mode, add jde-javadoc-checker-report-mode.
author Michael Kifer <kifer@cs.stonybrook.edu>
date Fri, 25 Nov 2005 07:18:07 +0000
parents 152403ad207b
children 231622e4e399
files lisp/ChangeLog lisp/emulation/viper-keym.el lisp/emulation/viper.el
diffstat 3 files changed, 14 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Fri Nov 25 05:32:56 2005 +0000
+++ b/lisp/ChangeLog	Fri Nov 25 07:18:07 2005 +0000
@@ -1,3 +1,11 @@
+2005-11-25  Michael Kifer  <kifer@cs.stonybrook.edu>
+	
+	* viper-keym.el (viper-ESC-key): use different values in terminal and
+	window modes.
+	
+	* viper.el (viper-emacs-state-mode-list): delete mail-mode, add
+	jde-javadoc-checker-report-mode.
+	
 2005-11-24  Chong Yidong  <cyd@stupidchicken.com>
 
 	* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
--- a/lisp/emulation/viper-keym.el	Fri Nov 25 05:32:56 2005 +0000
+++ b/lisp/emulation/viper-keym.el	Fri Nov 25 07:18:07 2005 +0000
@@ -200,9 +200,10 @@
   :type 'string
   :group 'viper)
 
-(defcustom viper-ESC-key [(escape)]  ; "\e"
+(defcustom viper-ESC-key (if (viper-window-display-p) [(escape)] "\e")
   "Key used to ESC.
-Enter as a sexp. Examples: \"\\e\", [(escape)]."
+Enter as a sexp. Examples: \"\\e\", [(escape)].
+If running in a terminal, [(escape)] is not understood, so must use \"\\e\"."
   :type 'sexp
   :group 'viper
   :set (lambda (symbol value)
--- a/lisp/emulation/viper.el	Fri Nov 25 05:32:56 2005 +0000
+++ b/lisp/emulation/viper.el	Fri Nov 25 07:18:07 2005 +0000
@@ -9,7 +9,7 @@
 ;; Author: Michael Kifer <kifer@cs.stonybrook.edu>
 ;; Keywords: emulations
 
-(defconst viper-version "3.11.5 of October 5, 2005"
+(defconst viper-version "3.11.5 of November 25, 2005"
   "The current version of Viper")
 
 ;; This file is part of GNU Emacs.
@@ -429,7 +429,6 @@
     occur-mode
 
     mh-folder-mode
-    mail-mode
     gnus-group-mode
     gnus-summary-mode
 
@@ -442,6 +441,8 @@
 
     rcirc-mode
 
+    jde-javadoc-checker-report-mode
+
     view-mode
     vm-mode
     vm-summary-mode)