]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix case-insensitive completion of buffer names
authorEli Zaretskii <eliz@gnu.org>
Sat, 9 Nov 2019 19:56:30 +0000 (21:56 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 9 Nov 2019 19:56:30 +0000 (21:56 +0200)
* test/src/minibuf-tests.el (test-try-completion-ignore-case):
New test, suggested by Stefan Monnier <monnier@iro.umontreal.ca>.

* src/minibuf.c (Ftry_completion): Don't treat strings that
are identical but for the case as if they were identical for
the purposes of not counting the same string twice.  This
fixes case-insensitive completion when all the candidates are
identical but for the letter-case.  (Bug#11339)

src/minibuf.c
test/src/minibuf-tests.el

index f6cf47f1f287ad626fec5cf1130190f750d23867..1e87c5044af1a6e7b48c2e78d4c2a64c99033224 100644 (file)
@@ -1323,13 +1323,13 @@ is used to further constrain the set of candidates.  */)
          else
            {
              compare = min (bestmatchsize, SCHARS (eltstring));
-             tem = Fcompare_strings (bestmatch, zero,
-                                     make_fixnum (compare),
-                                     eltstring, zero,
-                                     make_fixnum (compare),
+             Lisp_Object lcompare = make_fixnum (compare);
+             tem = Fcompare_strings (bestmatch, zero, lcompare,
+                                     eltstring, zero, lcompare,
                                      completion_ignore_case ? Qt : Qnil);
              matchsize = EQ (tem, Qt) ? compare : eabs (XFIXNUM (tem)) - 1;
 
+             Lisp_Object old_bestmatch = bestmatch;
              if (completion_ignore_case)
                {
                  /* If this is an exact match except for case,
@@ -1363,7 +1363,12 @@ is used to further constrain the set of candidates.  */)
                    bestmatch = eltstring;
                }
              if (bestmatchsize != SCHARS (eltstring)
-                 || bestmatchsize != matchsize)
+                 || bestmatchsize != matchsize
+                 || (completion_ignore_case
+                     && !EQ (Fcompare_strings (old_bestmatch, zero, lcompare,
+                                               eltstring, zero, lcompare,
+                                               Qnil),
+                             Qt)))
                /* Don't count the same string multiple times.  */
                matchcount += matchcount <= 1;
              bestmatchsize = matchsize;
index 12b018b8228d70037294a0a4f8146fb80d5ccbf6..c64892822d6a6ba358102780a85c1febc5a501b3 100644 (file)
   (minibuf-tests--test-completion-regexp
    #'minibuf-tests--strings-to-symbol-hashtable))
 
+(ert-deftest test-try-completion-ignore-case ()
+  (let ((completion-ignore-case t))
+    (should (equal (try-completion "bar" '("bAr" "barfoo")) "bAr"))
+    (should (equal (try-completion "bar" '("bArfoo" "barbaz")) "bar"))
+    (should (equal (try-completion "bar" '("bArfoo" "barbaz"))
+                   (try-completion "bar" '("barbaz" "bArfoo"))))
+    ;; bug#11339
+    (should (equal (try-completion "baz" '("baz" "bAz")) "baz")) ;And not `t'!
+    (should (equal (try-completion "baz" '("bAz" "baz"))
+                   (try-completion "baz" '("baz" "bAz"))))))
+
 \f
 ;;; minibuf-tests.el ends here