summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDeepak Goel <deego@gnufans.org>2007-12-06 19:48:30 +0000
committerDeepak Goel <deego@gnufans.org>2007-12-06 19:48:30 +0000
commit1388485d6b660d1f02fa35e0a64dd4f8fd090750 (patch)
tree8615ee04695df93551977f5dc2e75aa1c09ac9db
parent40b0e87a71aa2c0b396f2173b7ddd2708947ce39 (diff)
downloademacs-1388485d6b660d1f02fa35e0a64dd4f8fd090750.tar.gz
Fix my previous breakages; improve ChangeLog
-rw-r--r--lisp/ChangeLog24
-rw-r--r--lisp/gnus/gnus-start.el4
-rw-r--r--lisp/ibuffer.el2
-rw-r--r--lisp/vc.el6
4 files changed, 11 insertions, 25 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c5e0ebd2512..236419d04f6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,49 +1,35 @@
2007-12-06 D. Goel <deego3@gmail.com>
- * textmodes/reftex.el (reftex-TeX-master-file): Ditto.
+ * vc.el: Fix breakage.
+ * ibuffer.el (ibuffer-current-buffer): Ditto.
+ * gnus/gnus-start.el (gnus-load): Ditto.
+ * allout.el (allout-write-file-hook-handler): Fix buggy call(s) to `error'.
+ * textmodes/reftex.el (reftex-TeX-master-file): Ditto.
* textmodes/org.el (org-paste-subtree): Ditto.
-
* textmodes/ispell.el (ispell-process-line): Ditto.
-
* progmodes/vhdl-mode.el (vhdl-template-modify): Ditto.
-
* progmodes/idlw-shell.el (idlwave-shell-send-command): Ditto.
(idlwave-shell-display-line): Ditto.
-
* progmodes/ada-xref.el (ada-find-file): Ditto.
(ada-get-all-references): Ditto.
(ada-xref-find-in-modified-ali): Ditto.
(ada-find-in-src-path): Ditto.
-
* net/trampver.el (x): Ditto.
-
* mail/uce.el (uce-reply-to-uce): Ditto.
-
* mail/rmailout.el (rmail-output): Ditto.
-
* mail/feedmail.el (feedmail-dump-message-to-queue): Ditto.
-
* whitespace.el (whitespace-write-file-hook): Ditto.
-
* wdired.el (wdired-check-kill-buffer): Ditto.
-
* vc.el (vc-update): Ditto.
-
* vc-mcvs.el (vc-mcvs-checkin): Ditto.
-
* vc-cvs.el (vc-cvs-checkin): Ditto.
-
* man.el (Man-bgproc-sentinel): Ditto.
(Man-goto-see-also-section): Ditto.
-
* ibuffer.el (ibuffer-current-buffer): Ditto.
-
* dired.el (dired-move-to-end-of-filename): Ditto.
-
* bindings.el (complete-symbol): Ditto.
- * allout.el (allout-write-file-hook-handler): Fix buggy call(s) to `error'.
2007-12-06 D. Goel <deego3@gmail.com>
diff --git a/lisp/gnus/gnus-start.el b/lisp/gnus/gnus-start.el
index ca906d2d258..0b8a9cea67d 100644
--- a/lisp/gnus/gnus-start.el
+++ b/lisp/gnus/gnus-start.el
@@ -2392,8 +2392,8 @@ If FORCE is non-nil, the .newsrc file is read."
(eval form))
(error
(unless (eq (car type) 'end-of-file)
- (let ((error "Error in %s line %d" file
- (count-lines (point-min (point)))))
+ (let ((error (format "Error in %s line %d" file
+ (count-lines (point-min (point))))))
(ding)
(unless (gnus-yes-or-no-p (concat error "; continue? "))
(error "%s" error)))))))))
diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el
index 7ee2c973cfe..aa436a96971 100644
--- a/lisp/ibuffer.el
+++ b/lisp/ibuffer.el
@@ -1392,7 +1392,7 @@ If point is on a group name, this function operates on that group."
(when must-be-live
(if (bufferp buf)
(unless (buffer-live-p buf)
- (error "%s" (substitute-command-keys "Buffer %s has been killed; use `\\[ibuffer-update]' to update") buf))
+ (error "Buffer %s has been killed; %s" buf (substitute-command-keys "use `\\[ibuffer-update]' to update")))
(error "No buffer on this line")))
buf))
diff --git a/lisp/vc.el b/lisp/vc.el
index b54373a4e22..6fd6e25bd88 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -2622,10 +2622,10 @@ changes from the current branch are merged into the working file."
(error "%s"
(substitute-command-keys
"File is locked--type \\[vc-revert] to discard changes"))
- (error "%s"
+ (error "Unexpected file state (%s) -- type %s"
+ (vc-state file)
(substitute-command-keys
- "Unexpected file state (%s)--type \\[vc-next-action] to correct")
- (vc-state file)))
+ "\\[vc-next-action] to correct"))
(if (not (vc-find-backend-function (vc-backend file) 'merge-news))
(error "Sorry, merging news is not implemented for %s"
(vc-backend file))