2007-12-06 D. Goel <deego3@gmail.com>
+ * 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.
;; `query-replace' makes multiple corrections on the starting line.
(or (ispell-looking-at (car poss))
;; This occurs due to filter pipe problems
- (error (concat "Ispell misalignment: word "
+ (error "%s" (concat "Ispell misalignment: word "
"`%s' point %d; probably incompatible versions")
(car poss) (marker-position word-start)))
;; ispell-cmd-loop can go recursive & change buffer
If optional TREE is given, use this text instead of the kill ring."
(interactive "P")
(unless (org-kill-is-subtree-p tree)
- (error
+ (error "%s"
(substitute-command-keys
"The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
(let* ((txt (or tree (and kill-ring (current-kill 0))))
((fboundp 'TeX-master-file) ; AUCTeX is loaded. Use its mechanism.
(condition-case nil
(TeX-master-file t)
- (error (buffer-file-name))))
+ (error "%s" (buffer-file-name))))
((fboundp 'tex-main-file) (tex-main-file)) ; Emacs LaTeX mode
((boundp 'TeX-master) ; The variable is defined - lets use it.
(cond