GNU bug report logs - #24907
26.0.50; Opening bracket in char-class :alnum:

Previous Next

Package: emacs;

Reported by: Andreas Röhler <andreas.roehler <at> easy-emacs.de>

Date: Wed, 9 Nov 2016 08:45:02 UTC

Severity: normal

Tags: notabug

Found in version 26.0.50

Done: npostavs <at> users.sourceforge.net

Bug is archived. No further changes may be made.

Full log


Message #12 received at control <at> debbugs.gnu.org (full text, mbox):

From: npostavs <at> users.sourceforge.net
To: Andreas Röhler <andreas.roehler <at> easy-emacs.de>
Cc: 24907 <at> debbugs.gnu.org
Subject: Re: bug#24907: 26.0.50; Opening bracket in char-class :alnum:
Date: Wed, 09 Nov 2016 07:45:54 -0500
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.