]> git.eshelyaron.com Git - emacs.git/commitdiff
Delete extra copy of `comint-copy-old-input' added in previous change to
authorRomain Francoise <romain@orebokech.com>
Wed, 31 Jan 2007 13:20:52 +0000 (13:20 +0000)
committerRomain Francoise <romain@orebokech.com>
Wed, 31 Jan 2007 13:20:52 +0000 (13:20 +0000)
this file.

lisp/ChangeLog
lisp/comint.el

index 3d6f2e235fa617a4dd12864bdba3368eca9ab3b8..9e7e5bef7fb8ab54be2b34eff7c42a9f9c7f55f6 100644 (file)
@@ -1,3 +1,8 @@
+2007-01-31  Romain Francoise  <romain@orebokech.com>
+
+       * comint.el: Delete extra copy of `comint-copy-old-input' added in
+       previous change to this file.
+
 2007-01-31  Jason Rumney  <jasonr@gnu.org>
 
        * files.el (magic-mode-alist): Use image-mode-maybe rather than
index 2653728fa4e36170b9af13c16df52da6b676ffff..eeb3e720d060ec409c6fc4b2c8d4be1fc5218c7c 100644 (file)
@@ -1920,17 +1920,6 @@ Calls `comint-get-old-input' to get old input."
       (goto-char (process-mark process))
       (insert input))))
 
-(defun comint-copy-old-input ()
-  "Insert after prompt old input at point as new input to be edited.
-Calls `comint-get-old-input' to get old input."
-  (interactive)
-  (let ((input (funcall comint-get-old-input))
-       (process (get-buffer-process (current-buffer))))
-    (if (not process)
-       (error "Current buffer has no process")
-      (goto-char (process-mark process))
-      (insert input))))
-
 (defun comint-skip-prompt ()
   "Skip past the text matching regexp `comint-prompt-regexp'.
 If this takes us past the end of the current line, don't skip at all."