+2002-12-02 Noah Friedman <friedman@splode.com>
+
+ * complete.el (PC-do-completion): Do not add wildcards to pattern
+ unless filename is non-nil.
+
2002-12-02 Andreas Schwab <schwab@suse.de>
* mwheel.el (mouse-wheel-scroll-amount): Fix customize type.
(mwheel-inhibit-click-timeout,mwheel-filter-click-events): New defuns.
(mwheel-scroll): Add mwheel-filter-click-events as pre-command-hook.
Start mwheel-inhibit-click-event-timer with timeout handler
- mwheel-inhibit-click-timeout.
-
+ mwheel-inhibit-click-timeout.
+
2002-11-28 Nick Roberts <nick@nick.uklinux.net>
* tooltip.el (tooltip-gud-tips-setup): Remove.
(tooltip-gud-debugger): Remove.
- (tooltip-gud-print-command): Use gud-minor mode instead of
+ (tooltip-gud-print-command): Use gud-minor mode instead of
tooltip-gud-tips-setup and tooltip-gud-debugger.
* gdb-ui.el (gdb-starting): Set gdb-running to t.
(delete-region beg end)
(insert str)
(setq end (+ beg (length str)))))
-
+
;; Prepare various delimiter strings
(or (equal PC-word-delimiters PC-delims)
(setq PC-delims PC-word-delimiters
PC-delims-list (append PC-delims nil)))
;; Add wildcards if necessary
- (let ((dir (file-name-directory str))
- (file (file-name-nondirectory str)))
- (while (and (stringp dir) (not (file-directory-p dir)))
- (setq dir (directory-file-name dir))
- (setq file (concat (replace-regexp-in-string
- PC-delim-regex "*\\&"
- (file-name-nondirectory dir))
- "*/" file))
- (setq dir (file-name-directory dir)))
- (setq str (concat dir file)))
-
+ (and filename
+ (let ((dir (file-name-directory str))
+ (file (file-name-nondirectory str)))
+ (while (and (stringp dir) (not (file-directory-p dir)))
+ (setq dir (directory-file-name dir))
+ (setq file (concat (replace-regexp-in-string
+ PC-delim-regex "*\\&"
+ (file-name-nondirectory dir))
+ "*/" file))
+ (setq dir (file-name-directory dir)))
+ (setq str (concat dir file))))
+
;; Look for wildcard expansions in directory name
(and filename
(string-match "\\*.*/" str)
;;; This is adapted from lib-complete.el, by Mike Williams.
(defun PC-include-file-all-completions (file search-path &optional full)
"Return all completions for FILE in any directory on SEARCH-PATH.
-If optional third argument FULL is non-nil, returned pathnames should be
+If optional third argument FULL is non-nil, returned pathnames should be
absolute rather than relative to some directory on the SEARCH-PATH."
(setq search-path
(mapcar (lambda (dir)
;; It's an absolute file name, so don't need search-path
(progn
(setq file (expand-file-name file))
- (file-name-all-completions
+ (file-name-all-completions
(file-name-nondirectory file) (file-name-directory file)))
(let ((subdir (file-name-directory file))
(ndfile (file-name-nondirectory file))
(if (file-directory-p dir)
(progn
(setq file-lists
- (cons
+ (cons
(mapcar (lambda (file) (concat subdir file))
- (file-name-all-completions ndfile
+ (file-name-all-completions ndfile
(car search-path)))
file-lists))))
(setq search-path (cdr search-path))))