1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-01 11:14:55 +00:00

* lisp/net/ldap.el (ldap-search-internal): The official ldif format starts

with a "version: 1" header.

Fixes: debbugs:12724
This commit is contained in:
Stefan Monnier 2012-10-25 08:41:23 -04:00
parent a7723be6dd
commit fb5b947504
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
* net/ldap.el (ldap-search-internal): The official ldif format starts
with a "version: 1" header (bug#12724).
* emacs-lisp/package.el (package-installed-p): Warn if not ready
(bug#12721).

View File

@ -604,6 +604,7 @@ an alist of attribute/value pairs."
;; Skip error message when retrieving attribute list
(if (looking-at "Size limit exceeded")
(forward-line 1))
(if (looking-at "version:") (forward-line 1)) ;bug#12724.
(while (progn
(skip-chars-forward " \t\n")
(not (eobp)))