aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2008-05-05 09:51:29 +0000
committerStefan Monnier2008-05-05 09:51:29 +0000
commit140eb7640b37563599cb52caca175ebe23101ef0 (patch)
tree7f0add332a83b2359aa78e1b0cbe85d57a6db8ce /src
parent0c8a412cfd9ec585b1ca00c85492b10f633fc886 (diff)
downloademacs-140eb7640b37563599cb52caca175ebe23101ef0.tar.gz
emacs-140eb7640b37563599cb52caca175ebe23101ef0.zip
(Ftry_completion): Remove code left over from when we used
scmp instead of Fcompare_strings.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/minibuf.c3
2 files changed, 5 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f19f2a7b01f..6e2d3785d38 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * minibuf.c (Ftry_completion): Remove code left over from when we used
4 scmp instead of Fcompare_strings.
5
12008-05-04 Juanma Barranquero <lekktu@gmail.com> 62008-05-04 Juanma Barranquero <lekktu@gmail.com>
2 7
3 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format. 8 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
diff --git a/src/minibuf.c b/src/minibuf.c
index 71edfbd5281..3d900af9d5b 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -1445,9 +1445,6 @@ is used to further constrain the set of candidates. */)
1445 else 1445 else
1446 matchsize = XINT (tem) - 1; 1446 matchsize = XINT (tem) - 1;
1447 1447
1448 if (matchsize < 0)
1449 /* When can this happen ? -stef */
1450 matchsize = compare;
1451 if (completion_ignore_case) 1448 if (completion_ignore_case)
1452 { 1449 {
1453 /* If this is an exact match except for case, 1450 /* If this is an exact match except for case,