Mercurial > emacs
diff src/cmds.c @ 647:529171c8b71c
entered into RCS
| author | Jim Blandy <jimb@redhat.com> |
|---|---|
| date | Mon, 18 May 1992 08:13:37 +0000 |
| parents | 8c615e453683 |
| children | f7e3bac23a06 |
line wrap: on
line diff
--- a/src/cmds.c Fri May 15 21:56:59 1992 +0000 +++ b/src/cmds.c Mon May 18 08:13:37 1992 +0000 @@ -1,11 +1,11 @@ /* Simple built-in editing commands. - Copyright (C) 1985 Free Software Foundation, Inc. + Copyright (C) 1985, 1992 Free Software Foundation, Inc. This file is part of GNU Emacs. GNU Emacs is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 1, or (at your option) +the Free Software Foundation; either version 2, or (at your option) any later version. GNU Emacs is distributed in the hope that it will be useful, @@ -94,7 +94,8 @@ pos = scan_buffer ('\n', pos2, count - negp, &shortage); if (shortage > 0 && (negp - || (ZV >= BEGV + || (ZV > BEGV + && pos != pos2 && FETCH_CHAR (pos - 1) != '\n'))) shortage--; SET_PT (pos);
