[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/minibuf.c
From: |
Andreas Schwab |
Subject: |
[Emacs-diffs] Changes to emacs/src/minibuf.c |
Date: |
Fri, 24 Jan 2003 14:12:41 -0500 |
Index: emacs/src/minibuf.c
diff -c emacs/src/minibuf.c:1.252 emacs/src/minibuf.c:1.253
*** emacs/src/minibuf.c:1.252 Tue Jan 7 14:35:29 2003
--- emacs/src/minibuf.c Mon Jan 13 03:22:44 2003
***************
*** 399,404 ****
--- 399,406 ----
minibuffer_completion_contents ()
{
int prompt_end = XINT (Fminibuffer_prompt_end ());
+ if (PT < prompt_end)
+ error ("Cannot do completion in the prompt");
return make_buffer_string (prompt_end, PT, 1);
}
- [Emacs-diffs] Changes to emacs/src/minibuf.c,
Andreas Schwab <=