From: Phil Sainty <psainty@orcon.net.nz>
To: 16296@debbugs.gnu.org
Subject: bug#16296: subword.el regexps shouldn't be constants
Date: Sun, 05 Jan 2014 00:32:25 +1300 [thread overview]
Message-ID: <52C7F149.40504@orcon.net.nz> (raw)
In-Reply-To: <87mwjdgcbt.fsf@flea.lifelogs.com>
[-- Attachment #1: Type: text/plain, Size: 948 bytes --]
On 4/01/2014 11:08, Stefan Monnier wrote:
> If there are reasons for users to change them, then feel free
> to revert them to defvars.
Great, thank you.
On 4/01/2014 07:16, Ted Zlatanov wrote:
> For reference, you mean this commit?
>
> revno: 113492
> fixes bug: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=13758
> committer: Stefan Monnier <monnier@iro.umontreal.ca>
> branch nick: trunk
> timestamp: Mon 2013-07-22 12:25:32 -0400
> message:
> * lisp/progmodes/subword.el: Fix boundary case.
> (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
> own group.
> (subword-backward-regexp): Make it a constant.
> (subword-forward-internal): Don't treat a trailing capital as the
> beginning of a word.
> * test/automated/subword-tests.el: New file.
Yes, that's the one (although note that I'm not suggesting reverting
that entire commit; just the defvar -> defconst changes).
I've attached a patch.
-Phil
[-- Attachment #2: subword-regexp-vars.patch --]
[-- Type: text/plain, Size: 677 bytes --]
diff --git a/lisp/progmodes/subword.el b/lisp/progmodes/subword.el
index f45b9d1..f9efa37 100644
--- a/lisp/progmodes/subword.el
+++ b/lisp/progmodes/subword.el
@@ -93,11 +93,11 @@
(defvar subword-backward-function 'subword-backward-internal
"Function to call for backward subword movement.")
-(defconst subword-forward-regexp
+(defvar subword-forward-regexp
"\\W*\\(\\([[:upper:]]*\\(\\W\\)?\\)[[:lower:][:digit:]]*\\)"
"Regexp used by `subword-forward-internal'.")
-(defconst subword-backward-regexp
+(defvar subword-backward-regexp
"\\(\\(\\W\\|[[:lower:][:digit:]]\\)\\([[:upper:]]+\\W*\\)\\|\\W\\w+\\)"
"Regexp used by `subword-backward-internal'.")
next prev parent reply other threads:[~2014-01-04 11:32 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-29 23:43 bug#16296: subword.el regexps shouldn't be constants Phil Sainty
2014-01-03 18:16 ` Ted Zlatanov
2014-01-03 22:08 ` Stefan Monnier
2014-01-04 11:32 ` Phil Sainty [this message]
2014-01-05 5:50 ` Paul Eggert
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=52C7F149.40504@orcon.net.nz \
--to=psainty@orcon.net.nz \
--cc=16296@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.