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:
parent
a7723be6dd
commit
fb5b947504
@ -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).
|
||||
|
||||
|
@ -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)))
|
||||
|
Loading…
Reference in New Issue
Block a user