diff options
| author | Deepak Goel | 2007-12-06 20:25:35 +0000 |
|---|---|---|
| committer | Deepak Goel | 2007-12-06 20:25:35 +0000 |
| commit | 80d0675396769080b73ff01df587984020d7a0f8 (patch) | |
| tree | 3272fd87ff4d9742923f9467afb24b886ce57f4c | |
| parent | feac787c793552e48bef42499fb264cc44a4a3a1 (diff) | |
| download | emacs-80d0675396769080b73ff01df587984020d7a0f8.tar.gz emacs-80d0675396769080b73ff01df587984020d7a0f8.zip | |
Fix breakage from last change.
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/gnus-start.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index afcb487bd1e..d448f305cd0 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-12-06 D. Goel <deego3@gmail.com> | ||
| 2 | |||
| 3 | * gnus-start.el (gnus-load): Fix breakage from last change. | ||
| 4 | |||
| 1 | 2007-12-06 Reiner Steib <Reiner.Steib@gmx.de> | 5 | 2007-12-06 Reiner Steib <Reiner.Steib@gmx.de> |
| 2 | 6 | ||
| 3 | * gnus-start.el (gnus-load): Rename local variable to avoid confusion. | 7 | * gnus-start.el (gnus-load): Rename local variable to avoid confusion. |
diff --git a/lisp/gnus/gnus-start.el b/lisp/gnus/gnus-start.el index 100c28b9e80..75f9dda7c2b 100644 --- a/lisp/gnus/gnus-start.el +++ b/lisp/gnus/gnus-start.el | |||
| @@ -2393,7 +2393,7 @@ If FORCE is non-nil, the .newsrc file is read." | |||
| 2393 | (error | 2393 | (error |
| 2394 | (unless (eq (car type) 'end-of-file) | 2394 | (unless (eq (car type) 'end-of-file) |
| 2395 | (let ((errmsg (format "Error in %s line %d" file | 2395 | (let ((errmsg (format "Error in %s line %d" file |
| 2396 | (count-lines (point-min (point)))))) | 2396 | (count-lines (point-min) (point))))) |
| 2397 | (ding) | 2397 | (ding) |
| 2398 | (unless (gnus-yes-or-no-p (concat errmsg "; continue? ")) | 2398 | (unless (gnus-yes-or-no-p (concat errmsg "; continue? ")) |
| 2399 | (error "%s" errmsg))))))))) | 2399 | (error "%s" errmsg))))))))) |