Mercurial > emacs
diff src/cmds.c @ 25351:c7247eabc834
Remove conditional compilation on NO_PROMPT_IN_BUFFER.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Sat, 21 Aug 1999 19:29:47 +0000 |
| parents | 7730c6f39ef5 |
| children | 82ebdf9967da |
line wrap: on
line diff
--- a/src/cmds.c Sat Aug 21 19:29:38 1999 +0000 +++ b/src/cmds.c Sat Aug 21 19:29:47 1999 +0000 @@ -163,7 +163,6 @@ else CHECK_NUMBER (n, 0); -#if !NO_PROMPT_IN_BUFFER { int pos = XFASTINT (Fline_beginning_position (n)); if (INTEGERP (current_buffer->minibuffer_prompt_length) @@ -171,9 +170,7 @@ pos = XFASTINT (current_buffer->minibuffer_prompt_length); SET_PT (pos); } -#else - SET_PT (XINT (Fline_beginning_position (n))); -#endif + return Qnil; }
