GNU bug report logs -
#24907
26.0.50; Opening bracket in char-class :alnum:
Previous Next
Full log
Message #12 received at control <at> debbugs.gnu.org (full text, mbox):
tags 24907 notabug
close 24907
quit
Andreas Röhler <andreas.roehler <at> easy-emacs.de> writes:
>
>
> Behind some opening brackets:
>
> [[[[[
>
> Funktion below would skip backward over
>
> (defun my-skb ()
> (interactive)
> (skip-chars-backward "[[:alnum:]]"))
Yes, skip-chars-backward doesn't take a regexp, it takes a character
set. You wanted (skip-chars-backward "[:alnum:]")
(skip-chars-backward STRING &optional LIM)
Move point backward, stopping after a char not in STRING
Move point backward, stopping after a char not in STRING, or at pos LIM.
See ‘skip-chars-forward’ for details.
[...]
(skip-chars-forward STRING &optional LIM)
Move point forward, stopping before a char not in STRING, or at pos LIM.
STRING is like the inside of a ‘[...]’ in a regular expression
except that ‘]’ is never special and ‘\’ quotes ‘^’, ‘-’ or ‘\’
(but not at the end of a range; quoting is never needed there).
Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter.
With arg "^a-zA-Z", skips nonletters stopping before first letter.
Char classes, e.g. ‘[:alpha:]’, are supported.
This bug report was last modified 8 years and 194 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.