unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#3312: 23.0.93; Use punctuation syntax for apostrophe in Info
@ 2009-05-16 22:02 Drew Adams
  2009-05-17 14:50 ` Kevin Rodgers
                   ` (2 more replies)
  0 siblings, 3 replies; 16+ messages in thread
From: Drew Adams @ 2009-05-16 22:02 UTC (permalink / raw)
  To: emacs-pretest-bug

I don't know if this would be appropriate for all Info manuals, but at
least for Emacs, Elisp, Eintr, and Efaq it makes sense, I think.
 
Apostrophe, or single quote, (') currently has word-constituent syntax
in Info, which it inherits from text-mode.
 
This means that if point is inside some `...'  string, and you use
`C-s C-w', you will pick up also the ' at the end as part of the
search string, which is typically not what you want.
 
If the syntax class for ' were `punctuation' instead of `word', then
you could more easily pick up key sequences, function names, and
variable names that are quoted: `C-x C-x' or `char-syntax', for
example.
 
Yes, you can today pick up everything, including the ` and the ', by
positioning the cursor on the `, but if you want just the quoted
content or some suffix of it, and not the quoting delimiters, you
get the ' too, which is not what you want.
 
If this makes sense for all Info manuals, then a simple fix would
presumably be to change this (in the definition of `info-mode'):
 
(set-syntax-table text-mode-syntax-table)
 
To this:
 
(set-syntax-table
  (copy-syntax-table text-mode-syntax-table))
(modify-syntax-entry ?' ".")
 
I don't know much about text-mode, but I wonder if even there it might
make sense for ' to have syntax class `punctuation' instead of
`word'. Probably the answer is "no", or that would already be the
case. ;-)
 
I see this in `text-mode.el':
 ;; We add `p' so that M-c on 'hello' leads to 'Hello'
 ;; rather than 'hello'.
 (modify-syntax-entry ?' "w p" st)
 
That explains why p was added, but not why ' should have syntax class
w at all.  Again, there probably is a good reason, but I don't know
what it is.  After changing the syntax to punctuation, M-c still seems
to act as desired on 'hello'.
 
In GNU Emacs 23.0.93.1 (i386-mingw-nt5.1.2600)
 of 2009-05-02 on SOFT-MJASON
Windowing system distributor `Microsoft Corp.', version 5.1.2600
configured using `configure --with-gcc (3.4)'
 







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

end of thread, other threads:[~2011-09-18 19:57 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-16 22:02 bug#3312: 23.0.93; Use punctuation syntax for apostrophe in Info Drew Adams
2009-05-17 14:50 ` Kevin Rodgers
2009-05-17 15:59   ` Drew Adams
2009-05-17 18:59 ` Juri Linkov
2009-05-17 20:01   ` Eli Zaretskii
2009-05-17 20:03   ` Drew Adams
2009-05-17 19:29 ` Stefan Monnier
2009-05-17 20:08   ` Drew Adams
2009-05-19  0:47   ` Juri Linkov
2009-05-19  3:09     ` Drew Adams
2009-06-08 17:34       ` Drew Adams
2011-09-16 21:12     ` Lars Magne Ingebrigtsen
2011-09-17 12:31       ` Juri Linkov
2011-09-17 14:41         ` Drew Adams
2011-09-18  7:51         ` Lars Magne Ingebrigtsen
2011-09-18 19:57   ` Juri Linkov

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).