[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
trivial patch to comint.el
From: |
Sean O'Rourke |
Subject: |
trivial patch to comint.el |
Date: |
Thu, 05 Jul 2007 21:39:47 -0700 |
User-agent: |
Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (darwin) |
comint-dynamic-complete-as-filename should probably use
read-file-name-completion-ignore-case instead of a test on
system-type.
/s
Index: comint.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/comint.el,v
retrieving revision 1.361
diff -u -r1.361 comint.el
--- comint.el 2 Apr 2007 14:01:02 -0000 1.361
+++ comint.el 6 Jul 2007 04:38:25 -0000
@@ -2805,7 +2804,7 @@
(defun comint-dynamic-complete-as-filename ()
"Dynamically complete at point as a filename.
See `comint-dynamic-complete-filename'. Returns t if successful."
- (let* ((completion-ignore-case (memq system-type '(ms-dos windows-nt
cygwin)))
+ (let* ((completion-ignore-case read-file-name-completion-ignore-case)
(completion-ignored-extensions comint-completion-fignore)
;; If we bind this, it breaks remote directory tracking in rlogin.el.
;; I think it was originally bound to solve file completion problems,
- trivial patch to comint.el,
Sean O'Rourke <=