Neon Absentius wrote:
how can I make sure that the regular expressions are case sensitive?
By looking at the manual I thought that if the expression contains a capital letter then it automatically is case sensitive.

I think that is true when the regexp is entered interactively, e.g.
with C-s.

However
evaluating (looking-at "A") when the point is before an "a" returns true.

Try (let ((case-fold-search nil)) (looking-at "A"))

--
Kevin Rodgers



_______________________________________________
Help-gnu-emacs mailing list
Help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

Reply via email to