aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emulation/viper-init.el4
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d53109a90e9..f0f21861fbc 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
12001-02-07 Eli Zaretskii <eliz@is.elta.co.il> 12001-02-07 Eli Zaretskii <eliz@is.elta.co.il>
2 2
3 * emulation/viper-init.el (viper-fast-keyseq-timeout)
4 (viper-translate-all-ESC-keysequences): Doc fix. From Jim
5 Meyering <jim@meyering.net>.
6
3 * loadup.el: Revert last change. 7 * loadup.el: Revert last change.
4 8
52001-02-07 Kenichi Handa <handa@etl.go.jp> 92001-02-07 Kenichi Handa <handa@etl.go.jp>
diff --git a/lisp/emulation/viper-init.el b/lisp/emulation/viper-init.el
index da020f7ffd4..3527e38414a 100644
--- a/lisp/emulation/viper-init.el
+++ b/lisp/emulation/viper-init.el
@@ -492,7 +492,7 @@ text."
492(defcustom viper-fast-keyseq-timeout 200 492(defcustom viper-fast-keyseq-timeout 200
493 "*Key sequence separated by no more than this many milliseconds is viewed as a Vi-style macro, if such a macro is defined. 493 "*Key sequence separated by no more than this many milliseconds is viewed as a Vi-style macro, if such a macro is defined.
494Setting this too high may slow down your typing. Setting this value too low 494Setting this too high may slow down your typing. Setting this value too low
495will make it hard to use Vi-stile timeout macros." 495will make it hard to use Vi-style timeout macros."
496 :type 'integer 496 :type 'integer
497 :group 'viper-misc) 497 :group 'viper-misc)
498 498
@@ -510,7 +510,7 @@ on a dumb terminal."
510Normally, Viper lets Emacs translate only those ESC key sequences that are 510Normally, Viper lets Emacs translate only those ESC key sequences that are
511defined in the low-level key-translation-map or function-key-map, such as those 511defined in the low-level key-translation-map or function-key-map, such as those
512emitted by the arrow and function keys. Other sequences, e.g., \\e/, are 512emitted by the arrow and function keys. Other sequences, e.g., \\e/, are
513treated as ESQ command followed by a `/'. This is done for people who type fast 513treated as ESC command followed by a `/'. This is done for people who type fast
514and tend to hit other characters right after they hit ESC. Other people like 514and tend to hit other characters right after they hit ESC. Other people like
515Emacs to translate ESC sequences all the time. 515Emacs to translate ESC sequences all the time.
516The default is to translate all sequences only when using a dumb terminal. 516The default is to translate all sequences only when using a dumb terminal.