2005-11-01 John Wiegley <johnw@newartisans.com>
+ * net/eudcb-mab.el (eudc-mab-query-internal): Added backend
+ support for OS/X's AddressBook, by calling out to the open source
+ program "contacts" (installable through Fink).
+
+ * net/eudc.el (eudc-expand-inline): If the
+ `eudc-multiple-match-handling-method' is set to `all', delete the
+ query string before inserting the query result.
+
* eshell/em-ls.el (eshell-do-ls): Added no-op support for --dired
flag, to prevent Eshell from using the system ls when
`eshell-ls-insert-directory' is in used.
(if (stringp switches)
(setq switches (split-string switches)))
(let (eshell-current-handles
- eshell-current-subjob-p)
+ eshell-current-subjob-p
+ font-lock-mode)
;; use the fancy highlighting in `eshell-ls' rather than font-lock
(when (and eshell-ls-use-colors
(featurep 'font-lock))
(defvar show-recursive)
(defvar show-size)
(defvar sort-method)
- (defvar ange-cache))
+ (defvar ange-cache)
+ (defvar dired-flag))
(defun eshell-do-ls (&rest args)
"Implementation of \"ls\" in Lisp, passing ARGS."
`((?a "all" nil show-all
"show all files in directory")
(?c nil by-ctime sort-method
- "sort by modification time")
+ "sort by last status change time")
(?d "directory" nil dir-literal
"list directory entries instead of contents")
(?k "kilobytes" 1024 block-size
"sort alphabetically by entry extension")
(?1 nil single-column listing-style
"list one file per line")
+ (nil "dired" nil dired-flag
+ "Here for compatibility with GNU ls.")
(nil "help" nil nil
"show this usage display")
:external "ls"