diff options
| author | Juanma Barranquero | 2002-07-03 14:32:01 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2002-07-03 14:32:01 +0000 |
| commit | 5ec2752af6e1d88effeb6fe6422da0c1c74cc69c (patch) | |
| tree | 2810ba4acd1169d61246fddb604eaa8054c970b6 | |
| parent | e6608c123379bd53bf05d5982dc92a7e1769cad7 (diff) | |
| download | emacs-5ec2752af6e1d88effeb6fe6422da0c1c74cc69c.tar.gz emacs-5ec2752af6e1d88effeb6fe6422da0c1c74cc69c.zip | |
(tpu-delete-to-eol): Fix typo.
(tpu-delete-to-bol): Likewise.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/emulation/tpu-edt.el | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3a22f147ea2..8ebd18a19cf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -12,6 +12,9 @@ | |||
| 12 | 12 | ||
| 13 | * allout.el (outline-goto-prefix): Likewise. | 13 | * allout.el (outline-goto-prefix): Likewise. |
| 14 | 14 | ||
| 15 | * emulation/tpu-edt.el (tpu-delete-to-eol): Likewise. | ||
| 16 | (tpu-delete-to-bol): Likewise. | ||
| 17 | |||
| 15 | * subr.el (chars-in-region): Add obsolescence declaration for | 18 | * subr.el (chars-in-region): Add obsolescence declaration for |
| 16 | `chars-in-region'. | 19 | `chars-in-region'. |
| 17 | 20 | ||
diff --git a/lisp/emulation/tpu-edt.el b/lisp/emulation/tpu-edt.el index ae3ac67a57c..1296d497960 100644 --- a/lisp/emulation/tpu-edt.el +++ b/lisp/emulation/tpu-edt.el | |||
| @@ -1418,7 +1418,7 @@ They are saved for the TPU-edt undelete-lines command." | |||
| 1418 | 1418 | ||
| 1419 | (defun tpu-delete-to-eol (num) | 1419 | (defun tpu-delete-to-eol (num) |
| 1420 | "Delete text up to end of line. | 1420 | "Delete text up to end of line. |
| 1421 | With argument, delete up to to Nth line-end past point. | 1421 | With argument, delete up to the Nth line-end past point. |
| 1422 | They are saved for the TPU-edt undelete-lines command." | 1422 | They are saved for the TPU-edt undelete-lines command." |
| 1423 | (interactive "p") | 1423 | (interactive "p") |
| 1424 | (let ((beg (point))) | 1424 | (let ((beg (point))) |
| @@ -1430,7 +1430,7 @@ They are saved for the TPU-edt undelete-lines command." | |||
| 1430 | 1430 | ||
| 1431 | (defun tpu-delete-to-bol (num) | 1431 | (defun tpu-delete-to-bol (num) |
| 1432 | "Delete text back to beginning of line. | 1432 | "Delete text back to beginning of line. |
| 1433 | With argument, delete up to to Nth line-end past point. | 1433 | With argument, delete up to the Nth line-end past point. |
| 1434 | They are saved for the TPU-edt undelete-lines command." | 1434 | They are saved for the TPU-edt undelete-lines command." |
| 1435 | (interactive "p") | 1435 | (interactive "p") |
| 1436 | (let ((beg (point))) | 1436 | (let ((beg (point))) |