aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJuanma Barranquero2002-07-03 14:32:01 +0000
committerJuanma Barranquero2002-07-03 14:32:01 +0000
commit5ec2752af6e1d88effeb6fe6422da0c1c74cc69c (patch)
tree2810ba4acd1169d61246fddb604eaa8054c970b6 /lisp
parente6608c123379bd53bf05d5982dc92a7e1769cad7 (diff)
downloademacs-5ec2752af6e1d88effeb6fe6422da0c1c74cc69c.tar.gz
emacs-5ec2752af6e1d88effeb6fe6422da0c1c74cc69c.zip
(tpu-delete-to-eol): Fix typo.
(tpu-delete-to-bol): Likewise.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/emulation/tpu-edt.el4
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.
1421With argument, delete up to to Nth line-end past point. 1421With argument, delete up to the Nth line-end past point.
1422They are saved for the TPU-edt undelete-lines command." 1422They 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.
1433With argument, delete up to to Nth line-end past point. 1433With argument, delete up to the Nth line-end past point.
1434They are saved for the TPU-edt undelete-lines command." 1434They are saved for the TPU-edt undelete-lines command."
1435 (interactive "p") 1435 (interactive "p")
1436 (let ((beg (point))) 1436 (let ((beg (point)))