]> git.eshelyaron.com Git - emacs.git/commitdiff
(tmm-goto-completions): Adapt to prompt being part
authorGerd Moellmann <gerd@gnu.org>
Mon, 17 Jan 2000 15:32:56 +0000 (15:32 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 17 Jan 2000 15:32:56 +0000 (15:32 +0000)
of mini-buffer.

lisp/ChangeLog
lisp/tmm.el

index bc3ee6007fd8c758f0e58e26308d9449227be364..55406cff1667c5269a455e050c399f9ff3901323 100644 (file)
@@ -1,3 +1,8 @@
+2000-01-17  Gerd Moellmann  <gerd@gnu.org>
+
+       * tmm.el (tmm-goto-completions): Adapt to prompt being part
+       of mini-buffer.
+
 2000-01-14  Gerd Moellmann  <gerd@gnu.org>
 
        * emacs-lisp/copyright.el (copyright-update): Removed the
index e2c72b2feb80710b7bd03ab92518e48a4e4779ec..0db56d4c1d468bc7d78daefd247425704285e0cc 100644 (file)
@@ -387,8 +387,9 @@ Stores a list of all the shortcuts in the free variable `tmm-short-cuts'."
 
 (defun tmm-goto-completions ()
   (interactive)
-  (setq tmm-c-prompt (buffer-string))
-  (erase-buffer)
+  (let ((prompt-end (minibuffer-prompt-end)))
+    (setq tmm-c-prompt (buffer-substring prompt-end (point-max)))
+    (delete-region prompt-end (point-max)))
   (switch-to-buffer-other-window "*Completions*")
   (search-forward tmm-c-prompt)
   (search-backward tmm-c-prompt))