(type-break-get-previous-count): Repeat previous change here.
This commit is contained in:
parent
b0aa2c6515
commit
7ab2e82f0e
2 changed files with 17 additions and 4 deletions
|
|
@ -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>
|
2007-03-11 Dan Nicolaescu <dann@ics.uci.edu>
|
||||||
|
|
||||||
* progmodes/grep.el (grep-find-ignored-directories): Add .git and
|
* progmodes/grep.el (grep-find-ignored-directories): Add .git and
|
||||||
|
|
|
||||||
|
|
@ -579,10 +579,13 @@ integer."
|
||||||
(setq file
|
(setq file
|
||||||
(with-current-buffer
|
(with-current-buffer
|
||||||
(find-file-noselect file 'nowarn)
|
(find-file-noselect file 'nowarn)
|
||||||
(save-excursion
|
(condition-case nil
|
||||||
(goto-char (point-min))
|
(save-excursion
|
||||||
(forward-line 1)
|
(goto-char (point-min))
|
||||||
(read (current-buffer)))))))
|
(forward-line 1)
|
||||||
|
(read (current-buffer)))
|
||||||
|
(end-of-file
|
||||||
|
(error "End of file in `%s'" file)))))))
|
||||||
file
|
file
|
||||||
0)))
|
0)))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue