aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/completion.el5
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/completion.el b/lisp/completion.el
index 14ecc9b83dc..1073ae89156 100644
--- a/lisp/completion.el
+++ b/lisp/completion.el
@@ -409,10 +409,7 @@ Used to decide whether to save completions.")
409(defun cmpl-coerce-string-case (string case-type) 409(defun cmpl-coerce-string-case (string case-type)
410 (cond ((eq case-type :down) (downcase string)) 410 (cond ((eq case-type :down) (downcase string))
411 ((eq case-type :up) (upcase string)) 411 ((eq case-type :up) (upcase string))
412 ((eq case-type :capitalized) 412 ((eq case-type :capitalized) (capitalize string))
413 (setq string (downcase string))
414 (aset string 0 (logand ?\337 (aref string 0)))
415 string)
416 (t string))) 413 (t string)))
417 414
418(defun cmpl-merge-string-cases (string-to-coerce given-string) 415(defun cmpl-merge-string-cases (string-to-coerce given-string)