# HG changeset patch # User Karl Heuer # Date 849815566 0 # Node ID e2858bcbed435ca389add18fdeebcc436052d899 # Parent 16b8d910795fc0bed460e2de113be2f1fb10853c (PC-do-completion): Remove text properties from completions; also use string-equal instead of equal. diff -r 16b8d910795f -r e2858bcbed43 lisp/complete.el --- a/lisp/complete.el Wed Dec 04 10:57:01 1996 +0000 +++ b/lisp/complete.el Thu Dec 05 19:52:46 1996 +0000 @@ -409,7 +409,9 @@ (setq p compl) (while p (and (string-match regex (car p)) - (setq poss (cons (car p) poss))) + (progn + (set-text-properties 0 (length (car p)) '() (car p)) + (setq poss (cons (car p) poss)))) (setq p (cdr p))))) ;; Now we have a list of possible completions @@ -463,7 +465,7 @@ ;; Is the actual string one of the possible completions? (setq p (and (not (eq mode 'help)) poss)) (while (and p - (not (equal (car p) basestr))) + (not (string-equal (car p) basestr))) (setq p (cdr p))) (and p (null mode) (PC-temp-minibuffer-message " [Complete, but not unique]")) @@ -507,8 +509,7 @@ (delete-char 1) (setq end (1- end)))) (setq improved t)) - ;; Use format to discard text properties. - (insert (format "%s" (substring prefix i (1+ i)))) + (insert (substring prefix i (1+ i))) (setq end (1+ end))) (setq i (1+ i))) (or pt (equal (point) beg)