GNU bug report logs -
#14714
24.3.50; `isearch-filter-predicate(s)'
Previous Next
Reported by: Drew Adams <drew.adams <at> oracle.com>
Date: Tue, 25 Jun 2013 17:27:02 UTC
Severity: normal
Found in version 24.3.50
Done: Stefan Monnier <monnier <at> iro.umontreal.ca>
Bug is archived. No further changes may be made.
Full log
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Problem similar to that of bug #14712, regarding obsolescence, but I
think there is a code problem also.
1. `isearch-filter-predicates' should not be an _alias_ for
`isearch-filter-predicate'. The former cannot just replace the latter.
2. I think one cannot currently use a single predicate as the value of
`isearch-filter-predicates'. There is one place in the code where that
might work, because of this:
(if (consp isearch-filter-predicates)
isearch-filter-predicates
(list isearch-filter-predicates))
(But what if isearch-filter-predicates is nil? You get `(nil)', which I
think is wrong.)
And in other places it should not work at all. E.g.:
(run-hook-with-args-until-failure
'isearch-filter-predicates
(match-beginning 0) (match-end 0))
To make it work throughout, I think you would need to do something like this:
(when (and isearch-filter-predicates
(atom isearch-filter-predicates))
(setq isearch-filter-predicates (list isearch-filter-predicates)))
IOW, at the outset, convert an atomic (and non-nil) value to a cons.
In GNU Emacs 24.3.50.1 (i686-pc-mingw32)
of 2013-06-20 on ODIEONE
Bzr revision: 113100 eliz <at> gnu.org-20130620173624-w9v620tog4yacftk
Windowing system distributor `Microsoft Corp.', version 6.1.7601
Configured using:
`configure --prefix=/c/Devel/emacs/binary --enable-checking=yes,glyphs
CFLAGS=-O0 -g3 LDFLAGS=-Lc:/Devel/emacs/lib
CPPFLAGS=-Ic:/Devel/emacs/include'
This bug report was last modified 11 years and 291 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.