1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-26 10:49:33 +00:00

(type-break-get-previous-count): Repeat previous change here.

This commit is contained in:
Richard M. Stallman 2007-03-11 21:17:06 +00:00
parent b0aa2c6515
commit 7ab2e82f0e
2 changed files with 17 additions and 4 deletions

View File

@ -1,3 +1,13 @@
2007-03-11 Richard Stallman <rms@gnu.org>
* emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
Correctly compute line number.
2007-03-11 Guanpeng Xu <herberteuler@hotmail.com>
* type-break.el (type-break-get-previous-count):
Repeat previous change here.
2007-03-11 Dan Nicolaescu <dann@ics.uci.edu>
* progmodes/grep.el (grep-find-ignored-directories): Add .git and

View File

@ -579,10 +579,13 @@ integer."
(setq file
(with-current-buffer
(find-file-noselect file 'nowarn)
(save-excursion
(goto-char (point-min))
(forward-line 1)
(read (current-buffer)))))))
(condition-case nil
(save-excursion
(goto-char (point-min))
(forward-line 1)
(read (current-buffer)))
(end-of-file
(error "End of file in `%s'" file)))))))
file
0)))