]> git.eshelyaron.com Git - emacs.git/commitdiff
(minibuffer-prompt-end): Return the position
authorGerd Moellmann <gerd@gnu.org>
Sun, 17 Oct 1999 16:30:39 +0000 (16:30 +0000)
committerGerd Moellmann <gerd@gnu.org>
Sun, 17 Oct 1999 16:30:39 +0000 (16:30 +0000)
after the prompt, not the position of that last character
of the prompt.

lisp/simple.el

index 6bdd8a4bc89bcd6e868e1e99c906ea42fecd7170..7482bf2cfef1a598fe3e5f71d6cfa8a04f7183c4 100644 (file)
@@ -860,12 +860,8 @@ Return 0 if current buffer is not a mini-buffer."
 (defun minibuffer-prompt-end ()
   "Return the buffer position of the end of the minibuffer prompt.
 Return 0 if current buffer is not a mini-buffer."
-  ;; Return the width of everything before the field at the end of
-  ;; the buffer; this should be 0 for normal buffers.
-  ;; XXX This definition doesn't seem very useful; why does one care
-  ;; about the last character of the prompt?  The beginning of the
-  ;; user-text seems more useful (e.g., this value + 1).
-  (1- (field-beginning (point-max))))
+  (field-beginning (point-max)))
+
 \f
 ;Put this on C-x u, so we can force that rather than C-_ into startup msg
 (defalias 'advertised-undo 'undo)