aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2008-04-13 01:46:58 +0000
committerJuanma Barranquero2008-04-13 01:46:58 +0000
commit45555ebeed6961214891685f3ee66673ab17c54d (patch)
tree56c42a6bbae65bd3d566d2b31017aeaa650d8e10
parentf0d732ae65927cbb3bd17cef564508de0064509c (diff)
downloademacs-45555ebeed6961214891685f3ee66673ab17c54d.tar.gz
emacs-45555ebeed6961214891685f3ee66673ab17c54d.zip
(read-face-name): Use `completion-table-in-turn', not `complete-in-turn'.
-rw-r--r--lisp/faces.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index 5a0cc55a7e1..f30fc752fba 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -986,7 +986,7 @@ Otherwise, return a single face."
986 (if faces (mapconcat 'symbol-name faces ",") 986 (if faces (mapconcat 'symbol-name faces ",")
987 string-describing-default)) 987 string-describing-default))
988 (format "%s: " prompt)) 988 (format "%s: " prompt))
989 (complete-in-turn nonaliasfaces aliasfaces) 989 (completion-table-in-turn nonaliasfaces aliasfaces)
990 nil t nil nil 990 nil t nil nil
991 (if faces (mapconcat 'symbol-name faces ",")))) 991 (if faces (mapconcat 'symbol-name faces ","))))
992 ;; Canonicalize the output. 992 ;; Canonicalize the output.