diff options
author | Deepak Goel <deego@gnufans.org> | 2007-12-08 00:57:23 +0000 |
---|---|---|
committer | Deepak Goel <deego@gnufans.org> | 2007-12-08 00:57:23 +0000 |
commit | a867ead0d05d7809c12f15704f65431ce8a7aaee (patch) | |
tree | 19d0e35a35a36e3ecfc0735bf50216fd995bbe89 /lisp/progmodes/idlw-shell.el | |
parent | 3d587afd35bfdad13523d7b856d8d054e5826a4d (diff) | |
download | emacs-a867ead0d05d7809c12f15704f65431ce8a7aaee.tar.gz |
Improves calls to `error', per mail from RMS.
Diffstat (limited to 'lisp/progmodes/idlw-shell.el')
-rw-r--r-- | lisp/progmodes/idlw-shell.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/idlw-shell.el b/lisp/progmodes/idlw-shell.el index 153b95e65e4..1f184ea157d 100644 --- a/lisp/progmodes/idlw-shell.el +++ b/lisp/progmodes/idlw-shell.el @@ -2375,7 +2375,7 @@ matter what the settings of that variable." (if (not (idlwave-shell-valid-frame frame)) ;; fixme: errors are dangerous in shell filters. but i think i ;; have never encountered this one. - (error "%s" (concat "invalid frame - unable to access file: " (car frame))) + (error "invalid frame - unable to access file: %s" (car frame)) ;;; ;;; buffer : the buffer to display a line in. ;;; select-shell: current buffer is the shell. |