aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2004-11-29 23:26:08 +0000
committerLuc Teirlinck2004-11-29 23:26:08 +0000
commitd55f9265dd4596d63d040cf8758f6d50a4c45b74 (patch)
tree62359a5aa4598e4d9d6543533decf54e82d68ffb
parentd01320554292c816606acd1d4b281755fb078613 (diff)
downloademacs-d55f9265dd4596d63d040cf8758f6d50a4c45b74.tar.gz
emacs-d55f9265dd4596d63d040cf8758f6d50a4c45b74.zip
(tpu-help-keypad-map, tpu-help-text)
(tpu-word-separator-list, tpu-skip-chars): defconst->defvar.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/emulation/tpu-edt.el8
2 files changed, 10 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 10e9e98710b..7f0fe841865 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12004-11-29 Luc Teirlinck <teirllm@auburn.edu>
2
3 * emulation/tpu-edt.el (tpu-help-keypad-map, tpu-help-text)
4 (tpu-word-separator-list, tpu-skip-chars): defconst->defvar.
5
12004-11-29 Jay Belanger <belanger@truman.edu> 62004-11-29 Jay Belanger <belanger@truman.edu>
2 7
3 * calc/calc-arith.el (math-pow-of-zero): Take into account different 8 * calc/calc-arith.el (math-pow-of-zero): Take into account different
@@ -13,7 +18,7 @@
13 * replace.el (occur-next-error): switch to the Occur buffer when 18 * replace.el (occur-next-error): switch to the Occur buffer when
14 appropriate, and use the exclusive filter to 19 appropriate, and use the exclusive filter to
15 next-error-find-buffer to do it. Use the absolute value of the 20 next-error-find-buffer to do it. Use the absolute value of the
16 motion amount. 21 motion amount.
17 22
182004-11-29 Kenichi Handa <handa@m17n.org> 232004-11-29 Kenichi Handa <handa@m17n.org>
19 24
diff --git a/lisp/emulation/tpu-edt.el b/lisp/emulation/tpu-edt.el
index b164588d8f1..f8f608b01d0 100644
--- a/lisp/emulation/tpu-edt.el
+++ b/lisp/emulation/tpu-edt.el
@@ -844,7 +844,7 @@ This is useful for inserting control characters."
844;;; 844;;;
845;;; Help 845;;; Help
846;;; 846;;;
847(defconst tpu-help-keypad-map "\f 847(defvar tpu-help-keypad-map "\f
848 _______________________ _______________________________ 848 _______________________ _______________________________
849 | HELP | Do | | | | | | 849 | HELP | Do | | | | | |
850 |KeyDefs| | | | | | | 850 |KeyDefs| | | | | | |
@@ -867,7 +867,7 @@ This is useful for inserting control characters."
867 |_______________|_______|_______| 867 |_______________|_______|_______|
868") 868")
869 869
870(defconst tpu-help-text " 870(defvar tpu-help-text "
871\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\f 871\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\f
872 872
873 Control Characters 873 Control Characters
@@ -1706,9 +1706,9 @@ A repeat count means move that many characters."
1706;;; 1706;;;
1707;;; Movement by word 1707;;; Movement by word
1708;;; 1708;;;
1709(defconst tpu-word-separator-list '() 1709(defvar tpu-word-separator-list '()
1710 "List of additional word separators.") 1710 "List of additional word separators.")
1711(defconst tpu-skip-chars "^ \t" 1711(defvar tpu-skip-chars "^ \t"
1712 "Characters to skip when moving by word. 1712 "Characters to skip when moving by word.
1713Additional word separators are added to this string.") 1713Additional word separators are added to this string.")
1714 1714