aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell
diff options
context:
space:
mode:
authorStefan Monnier2010-05-24 22:11:08 -0400
committerStefan Monnier2010-05-24 22:11:08 -0400
commitd355a0b79173c5d479fed0c7b1b7b81cc652b42c (patch)
tree22cf673e1bb9f407d8604ebbf1c441da581cacd5 /lisp/eshell
parentf668ef02cbdbb3544702bb58926a443be918a03f (diff)
downloademacs-d355a0b79173c5d479fed0c7b1b7b81cc652b42c.tar.gz
emacs-d355a0b79173c5d479fed0c7b1b7b81cc652b42c.zip
Replace Lisp calls to delete-backward-char by delete-char.
* bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el, skeleton.el, term.el, time.el, wid-edit.el, woman.el, calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el, calc/calc.el, emacs-cl-extra.el, emacs-cl-loaddefs.el, emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el, eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el, gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el, language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el, net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el, progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el, progmodes/ps-mode.el, progmodes/verilog-mode.el, progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el, textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el, textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to delete-backward-char by calls to delete-char.
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/esh-test.el2
-rw-r--r--lisp/eshell/eshell.el2
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/eshell/esh-test.el b/lisp/eshell/esh-test.el
index eb448e9704f..5bce6072f0a 100644
--- a/lisp/eshell/esh-test.el
+++ b/lisp/eshell/esh-test.el
@@ -101,7 +101,7 @@
101 (eshell-redisplay)) 101 (eshell-redisplay))
102 (let ((truth (eval command))) 102 (let ((truth (eval command)))
103 (with-current-buffer test-buffer 103 (with-current-buffer test-buffer
104 (delete-backward-char 6) 104 (delete-char -6)
105 (insert-before-markers 105 (insert-before-markers
106 "[" (let (str) 106 "[" (let (str)
107 (if truth 107 (if truth
diff --git a/lisp/eshell/eshell.el b/lisp/eshell/eshell.el
index 74f65d2fe55..89ec3ab9c60 100644
--- a/lisp/eshell/eshell.el
+++ b/lisp/eshell/eshell.el
@@ -404,7 +404,7 @@ With prefix ARG, insert output into the current buffer at point."
404 (assert (not (eshell-interactive-process))) 404 (assert (not (eshell-interactive-process)))
405 (goto-char (point-max)) 405 (goto-char (point-max))
406 (while (and (bolp) (not (bobp))) 406 (while (and (bolp) (not (bobp)))
407 (delete-backward-char 1))) 407 (delete-char -1)))
408 (assert (and buf (buffer-live-p buf))) 408 (assert (and buf (buffer-live-p buf)))
409 (unless arg 409 (unless arg
410 (let ((len (if (not intr) 2 410 (let ((len (if (not intr) 2