diff options
| author | Miles Bader | 2004-12-08 05:02:30 +0000 |
|---|---|---|
| committer | Miles Bader | 2004-12-08 05:02:30 +0000 |
| commit | 000fc2b1fad05ccd9e6cdb5810febb091f4b5738 (patch) | |
| tree | 808f1473847c7c44bc8b28d8edfa086ec25035d1 /lisp/emulation | |
| parent | 5bc63b073c3c75dbfab1f14423f01cc615e26eeb (diff) | |
| parent | ad136a7c3b310fa7240dd2adf62f23b454782bd0 (diff) | |
| download | emacs-000fc2b1fad05ccd9e6cdb5810febb091f4b5738.tar.gz emacs-000fc2b1fad05ccd9e6cdb5810febb091f4b5738.zip | |
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-74
Merge from emacs--cvs-trunk--0
Patches applied:
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-709
Update from CVS: src/indent.c (Fvertical_motion): Fix last change.
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-710
- miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-715
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-716
Merge from gnus--rel--5.10
* miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-74
Update from CVS
Diffstat (limited to 'lisp/emulation')
| -rw-r--r-- | lisp/emulation/tpu-edt.el | 8 |
1 files changed, 4 insertions, 4 deletions
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. |
| 1713 | Additional word separators are added to this string.") | 1713 | Additional word separators are added to this string.") |
| 1714 | 1714 | ||