# HG changeset patch # User Pavel Jank # Date 1021221680 0 # Node ID 6baa96917e5668d092215989d599722f7a803e47 # Parent aec4852e765accd056cecf83ef1174c077acc084 (ldap-search-internal): Unfold folded lines before parsing. diff -r aec4852e765a -r 6baa96917e56 lisp/net/ldap.el --- a/lisp/net/ldap.el Sun May 12 16:41:11 2002 +0000 +++ b/lisp/net/ldap.el Sun May 12 16:41:20 2002 +0000 @@ -562,6 +562,10 @@ (insert "\n") (goto-char (point-min)) + (while (re-search-forward "[\t\n\f]+ " nil t) + (replace-match "" nil nil)) + (goto-char (point-min)) + (if (looking-at "usage") (error "Incorrect ldapsearch invocation") (message "Parsing results... ")