diff options
| author | Karoly Lorentey | 2005-05-16 15:49:27 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2005-05-16 15:49:27 +0000 |
| commit | 35bc5d82600f330082298823f09f53259a90ea81 (patch) | |
| tree | 328e8f1df7bcd3cb68f4dfa7de371543da885c89 /lisp/eshell | |
| parent | 133fe4c8a2d944324dc2c9a42b01ab1d258ad49d (diff) | |
| parent | cc211a0ff8145e0814413e237bb5674d615968b7 (diff) | |
| download | emacs-35bc5d82600f330082298823f09f53259a90ea81.tar.gz emacs-35bc5d82600f330082298823f09f53259a90ea81.zip | |
Merged from miles@gnu.org--gnu-2005 (patch 307-312)
Patches applied:
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-307
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-308
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-309
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-310
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-311
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-312
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-346
Diffstat (limited to 'lisp/eshell')
| -rw-r--r-- | lisp/eshell/esh-mode.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/eshell/esh-mode.el b/lisp/eshell/esh-mode.el index 7b07b84563a..54d4c4acb9e 100644 --- a/lisp/eshell/esh-mode.el +++ b/lisp/eshell/esh-mode.el | |||
| @@ -517,7 +517,8 @@ This is used by `eshell-watch-for-password-prompt'." | |||
| 517 | (let ((inhibit-read-only t) | 517 | (let ((inhibit-read-only t) |
| 518 | (no-default (eobp)) | 518 | (no-default (eobp)) |
| 519 | (find-tag-default-function 'ignore)) | 519 | (find-tag-default-function 'ignore)) |
| 520 | (setq tagname (car (find-tag-interactive "Find tag: "))) | 520 | (with-no-warnings |
| 521 | (setq tagname (car (find-tag-interactive "Find tag: ")))) | ||
| 521 | (find-tag tagname next-p regexp-p))) | 522 | (find-tag tagname next-p regexp-p))) |
| 522 | 523 | ||
| 523 | (defun eshell-move-argument (limit func property arg) | 524 | (defun eshell-move-argument (limit func property arg) |