aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJose Marino2012-09-12 01:04:10 -0700
committerGlenn Morris2012-09-12 01:04:10 -0700
commita316d229e34519f7ab236da5ea425812c345ad90 (patch)
tree76ad47ee040ff81d35d7453013abf98f37df4195
parent1bfe31778b5f4a393d3d0e307c99f507bdf185fb (diff)
downloademacs-a316d229e34519f7ab236da5ea425812c345ad90.tar.gz
emacs-a316d229e34519f7ab236da5ea425812c345ad90.zip
* idlw-shell.el (idlwave-shell-complete-filename): Fix 2011-05-17 change.
Fixes: debbugs:12418
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/idlw-shell.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4f8a0b0e01e..e8a05696437 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12012-09-12 Jose Marino <marinoj@nso.edu> (tiny change)
2
3 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
4 Fix 2011-05-17 change. (Bug#12418)
5
12012-09-11 Leo Liu <sdl.web@gmail.com> 62012-09-11 Leo Liu <sdl.web@gmail.com>
2 7
3 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string. 8 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
diff --git a/lisp/progmodes/idlw-shell.el b/lisp/progmodes/idlw-shell.el
index 55a085fbde0..12829b64eb0 100644
--- a/lisp/progmodes/idlw-shell.el
+++ b/lisp/progmodes/idlw-shell.el
@@ -2187,7 +2187,7 @@ args of an executive .run, .rnew or .compile."
2187 ;; CWD might have changed, resync, to set default directory 2187 ;; CWD might have changed, resync, to set default directory
2188 (idlwave-shell-resync-dirs) 2188 (idlwave-shell-resync-dirs)
2189 (let ((comint-file-name-chars idlwave-shell-file-name-chars)) 2189 (let ((comint-file-name-chars idlwave-shell-file-name-chars))
2190 (comint-filename-completion))) 2190 (comint-dynamic-complete-filename)))
2191 2191
2192(defun idlwave-shell-executive-command () 2192(defun idlwave-shell-executive-command ()
2193 "Return the name of the current executive command, if any." 2193 "Return the name of the current executive command, if any."