diff options
| author | Joakim Verona | 2012-10-25 15:34:12 +0200 |
|---|---|---|
| committer | Joakim Verona | 2012-10-25 15:34:12 +0200 |
| commit | 9c809558c18410acf9b90529e183d192afca3d2c (patch) | |
| tree | d32e5a86d57611e29e9f4148d2936fc394ebeb52 | |
| parent | d1eb940020b683ef6864eb6a105dbc8eb3d9452a (diff) | |
| parent | aaabfc8b2744aabe00b9fc97eaca59940b5afdeb (diff) | |
| download | emacs-9c809558c18410acf9b90529e183d192afca3d2c.tar.gz emacs-9c809558c18410acf9b90529e183d192afca3d2c.zip | |
upstream
| -rw-r--r-- | doc/misc/ChangeLog | 6 | ||||
| -rw-r--r-- | doc/misc/tramp.texi | 3 | ||||
| -rw-r--r-- | lisp/ChangeLog | 12 | ||||
| -rw-r--r-- | lisp/dired.el | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/cl-loaddefs.el | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/package.el | 1 | ||||
| -rw-r--r-- | lisp/minibuffer.el | 6 | ||||
| -rw-r--r-- | lisp/net/ldap.el | 1 |
8 files changed, 27 insertions, 6 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index ec46ab5eb05..fc44828e8bf 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2012-10-25 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * tramp.texi (Frequently Asked Questions): Mention | ||
| 4 | `tramp-completion-reread-directory-timeout' for performance | ||
| 5 | improvement. | ||
| 6 | |||
| 1 | 2012-10-25 Glenn Morris <rgm@gnu.org> | 7 | 2012-10-25 Glenn Morris <rgm@gnu.org> |
| 2 | 8 | ||
| 3 | * cl.texi: Don't mess with the TeX section number counter. | 9 | * cl.texi: Don't mess with the TeX section number counter. |
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi index 46f99acbb87..a983f76ffd3 100644 --- a/doc/misc/tramp.texi +++ b/doc/misc/tramp.texi | |||
| @@ -2918,7 +2918,8 @@ information about remote hosts is kept in the file specified in | |||
| 2918 | @code{tramp-persistency-file-name}. Keep this file. If you are | 2918 | @code{tramp-persistency-file-name}. Keep this file. If you are |
| 2919 | confident that files on remote hosts are not changed out of | 2919 | confident that files on remote hosts are not changed out of |
| 2920 | @value{emacsname}' control, set @code{remote-file-name-inhibit-cache} | 2920 | @value{emacsname}' control, set @code{remote-file-name-inhibit-cache} |
| 2921 | to @code{nil}. | 2921 | to @code{nil}. Set also @code{tramp-completion-reread-directory-timeout} |
| 2922 | to @code{nil}, @ref{Filename completion}. | ||
| 2922 | 2923 | ||
| 2923 | Disable version control. If you access remote files which are not | 2924 | Disable version control. If you access remote files which are not |
| 2924 | under version control, a lot of check operations can be avoided by | 2925 | under version control, a lot of check operations can be avoided by |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1150b68fe0f..ea75d3774a1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725). | ||
| 4 | |||
| 5 | * minibuffer.el (minibuffer-force-complete): Fix thinko. | ||
| 6 | |||
| 7 | * net/ldap.el (ldap-search-internal): The official ldif format starts | ||
| 8 | with a "version: 1" header (bug#12724). | ||
| 9 | |||
| 10 | * emacs-lisp/package.el (package-installed-p): Warn if not ready | ||
| 11 | (bug#12721). | ||
| 12 | |||
| 1 | 2012-10-25 Glenn Morris <rgm@gnu.org> | 13 | 2012-10-25 Glenn Morris <rgm@gnu.org> |
| 2 | 14 | ||
| 3 | * emacs-lisp/cl-macs.el (cl-progv): Doc fix. | 15 | * emacs-lisp/cl-macs.el (cl-progv): Doc fix. |
diff --git a/lisp/dired.el b/lisp/dired.el index 9094ce08f0a..fb2f7281130 100644 --- a/lisp/dired.el +++ b/lisp/dired.el | |||
| @@ -620,7 +620,7 @@ Don't use that together with FILTER." | |||
| 620 | (let* ((all-of-them | 620 | (let* ((all-of-them |
| 621 | (save-excursion | 621 | (save-excursion |
| 622 | (dired-map-over-marks | 622 | (dired-map-over-marks |
| 623 | (dired-get-filename localp) | 623 | (dired-get-filename localp 'no-error-if-not-filep) |
| 624 | arg nil distinguish-one-marked))) | 624 | arg nil distinguish-one-marked))) |
| 625 | result) | 625 | result) |
| 626 | (if (not filter) | 626 | (if (not filter) |
diff --git a/lisp/emacs-lisp/cl-loaddefs.el b/lisp/emacs-lisp/cl-loaddefs.el index 684ea42b157..86f04e4b5f5 100644 --- a/lisp/emacs-lisp/cl-loaddefs.el +++ b/lisp/emacs-lisp/cl-loaddefs.el | |||
| @@ -260,7 +260,7 @@ Remove from SYMBOL's plist the property PROPNAME and its value. | |||
| 260 | ;;;;;; cl-typecase cl-ecase cl-case cl-load-time-value cl-eval-when | 260 | ;;;;;; cl-typecase cl-ecase cl-case cl-load-time-value cl-eval-when |
| 261 | ;;;;;; cl-destructuring-bind cl-function cl-defmacro cl-defun cl-gentemp | 261 | ;;;;;; cl-destructuring-bind cl-function cl-defmacro cl-defun cl-gentemp |
| 262 | ;;;;;; cl-gensym cl--compiler-macro-cXXr cl--compiler-macro-list*) | 262 | ;;;;;; cl-gensym cl--compiler-macro-cXXr cl--compiler-macro-list*) |
| 263 | ;;;;;; "cl-macs" "cl-macs.el" "366e9efa4e3e7a81b2253e503611b23a") | 263 | ;;;;;; "cl-macs" "cl-macs.el" "bdc107ab6064c577d393152665c74ddd") |
| 264 | ;;; Generated autoloads from cl-macs.el | 264 | ;;; Generated autoloads from cl-macs.el |
| 265 | 265 | ||
| 266 | (autoload 'cl--compiler-macro-list* "cl-macs" "\ | 266 | (autoload 'cl--compiler-macro-list* "cl-macs" "\ |
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 28d166271fb..303642b5bec 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -728,6 +728,7 @@ It will move point to somewhere in the headers." | |||
| 728 | (defun package-installed-p (package &optional min-version) | 728 | (defun package-installed-p (package &optional min-version) |
| 729 | "Return true if PACKAGE, of MIN-VERSION or newer, is installed. | 729 | "Return true if PACKAGE, of MIN-VERSION or newer, is installed. |
| 730 | MIN-VERSION should be a version list." | 730 | MIN-VERSION should be a version list." |
| 731 | (unless package--initialized (error "package.el is not yet initialized!")) | ||
| 731 | (let ((pkg-desc (assq package package-alist))) | 732 | (let ((pkg-desc (assq package package-alist))) |
| 732 | (if pkg-desc | 733 | (if pkg-desc |
| 733 | (version-list-<= min-version | 734 | (version-list-<= min-version |
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 4267fe4db4f..4421e325b91 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el | |||
| @@ -1124,10 +1124,10 @@ Repeated uses step through the possible completions." | |||
| 1124 | (completion--message | 1124 | (completion--message |
| 1125 | (if all "No more completions" "No completions"))) | 1125 | (if all "No more completions" "No completions"))) |
| 1126 | ((not (consp (cdr all))) | 1126 | ((not (consp (cdr all))) |
| 1127 | (let ((mod (equal (car all) (buffer-substring-no-properties base end)))) | 1127 | (let ((done (equal (car all) (buffer-substring-no-properties base end)))) |
| 1128 | (if mod (completion--replace base end (car all))) | 1128 | (unless done (completion--replace base end (car all))) |
| 1129 | (completion--done (buffer-substring-no-properties start (point)) | 1129 | (completion--done (buffer-substring-no-properties start (point)) |
| 1130 | 'finished (unless mod "Sole completion")))) | 1130 | 'finished (when done "Sole completion")))) |
| 1131 | (t | 1131 | (t |
| 1132 | (completion--replace base end (car all)) | 1132 | (completion--replace base end (car all)) |
| 1133 | (completion--done (buffer-substring-no-properties start (point)) 'sole) | 1133 | (completion--done (buffer-substring-no-properties start (point)) 'sole) |
diff --git a/lisp/net/ldap.el b/lisp/net/ldap.el index eb696798b6f..6ef713de93d 100644 --- a/lisp/net/ldap.el +++ b/lisp/net/ldap.el | |||
| @@ -604,6 +604,7 @@ an alist of attribute/value pairs." | |||
| 604 | ;; Skip error message when retrieving attribute list | 604 | ;; Skip error message when retrieving attribute list |
| 605 | (if (looking-at "Size limit exceeded") | 605 | (if (looking-at "Size limit exceeded") |
| 606 | (forward-line 1)) | 606 | (forward-line 1)) |
| 607 | (if (looking-at "version:") (forward-line 1)) ;bug#12724. | ||
| 607 | (while (progn | 608 | (while (progn |
| 608 | (skip-chars-forward " \t\n") | 609 | (skip-chars-forward " \t\n") |
| 609 | (not (eobp))) | 610 | (not (eobp))) |