all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Is it obvious that string-match syntax matching is affected by the current buffer?
@ 2016-03-13 16:31 Tom
  2016-03-13 16:52 ` Andreas Röhler
  0 siblings, 1 reply; 8+ messages in thread
From: Tom @ 2016-03-13 16:31 UTC (permalink / raw)
  To: help-gnu-emacs

I did a word constituent match with string-match and a question
occured to me: what controls what is considered word constituent
in this case?

I checked info, but I saw no mention of this, so I did a test and
yes, the current syntax table affects string-match:

(let ((tab (make-syntax-table)))
  (modify-syntax-entry ?a " " tab)
  (with-syntax-table tab
    (string-match "\\s-" "a")))


Isn't a strange? E.g. I'm doing a string match in elisp, so I'm
not working with the current buffer, yet its active syntax table
affects the result of string-match. Seems to me these are
different domains and string-match should have its own
string-match-syntax-table or something, so there can be no
match side effects depending on the currently active buffer.

Do you think it's obvious for the elisp users that string-match
is affected by the current buffer? Maybe the documentation should
mention this. (Maybe it does, but I didn't see it.)





^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2016-03-14  0:40 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-13 16:31 Is it obvious that string-match syntax matching is affected by the current buffer? Tom
2016-03-13 16:52 ` Andreas Röhler
2016-03-13 16:56   ` Tom
2016-03-13 17:23     ` Eli Zaretskii
2016-03-13 19:19       ` Tom
2016-03-13 19:36         ` Eli Zaretskii
2016-03-14  0:13         ` Stefan Monnier
2016-03-14  0:40           ` Drew Adams

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.