unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: Eli Zaretskii <eliz@gnu.org>
To: Drew Adams <drew.adams@oracle.com>
Cc: 23798@debbugs.gnu.org
Subject: bug#23798: 25.0.90; Underscore for emphasis in Info?
Date: Sun, 03 Jul 2016 06:34:22 +0300	[thread overview]
Message-ID: <831t3bs8ch.fsf@gnu.org> (raw)
In-Reply-To: <89ca9fa3-c68b-4c9c-a826-406907c7248e@default> (message from Drew Adams on Sat, 2 Jul 2016 13:59:54 -0700 (PDT))

> Date: Sat, 2 Jul 2016 13:59:54 -0700 (PDT)
> From: Drew Adams <drew.adams@oracle.com>
> Cc: 23798@debbugs.gnu.org
> 
> FWIW -
> 
> In my own code I'm using this regexp now (by default - a user option):
> 
> "_\\(\\(\\sw\\(\\s-\\|\\sw\\|\\s.\\)*\\)\\|\\(\\(\\s-\\|\\sw\\|\\s.\\)\\sw*\\)\\)_"
> 
> It matches word, punctuation, and whitespace chars, plus hyphens,
> with at least one word character.  Hyphen is included explicitly
> because it generally has symbol syntax in Info.
> 
> This seems to work pretty will.  But there are of course some
> places where it does not DTRT.
> 
> In my own code I also remove hiding of the enclosing `_' chars
> when emphasis highlighting is turned off:
> 
> (while (re-search-forward Info-emphasis-regexp nil t)
>   (let ((fn  (if Info-fontify-emphasis-flag
>                  #'add-text-properties
>                #'remove-text-properties)))
>      (funcall fn (match-beginning 0) (1+ (match-beginning 0))
>               '(invisible t front-sticky nil rear-nonsticky t))
>      (funcall fn (1- (match-end 0)) (match-end 0)
>               '(invisible t front-sticky nil rear-nonsticky t))
>      (funcall fn (match-beginning 1) (match-end 1)
>               '(font-lock-face info-emphasis))))

I hope one of the Info gurus will chime in at some point.

Thanks.





  reply	other threads:[~2016-07-03  3:34 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <<<<d3ea8bac-f3aa-48ec-a9f4-ff83f76bb393@default>
     [not found] ` <<<<8337o9aogg.fsf@gnu.org>
     [not found]   ` <<<3129ea6b-50bf-48e6-b3d0-b180828dfc5c@default>
     [not found]     ` <<<83wpll8bbi.fsf@gnu.org>
     [not found]       ` <<7648aec5-f939-4da3-8d4c-9ea03799c0db@default>
     [not found]         ` <<83mvmh87dl.fsf@gnu.org>
2016-06-19 19:29           ` bug#23798: 25.0.90; Underscore for emphasis in Info? Drew Adams
2016-07-01 16:36             ` Drew Adams
2016-07-01 17:20               ` Eli Zaretskii
2016-07-02 20:59             ` Drew Adams
2016-07-03  3:34               ` Eli Zaretskii [this message]
2016-07-06 22:35                 ` John Wiegley
2016-07-06 22:52                   ` Drew Adams
     [not found] <<<<<<d3ea8bac-f3aa-48ec-a9f4-ff83f76bb393@default>
     [not found] ` <<<<<<8337o9aogg.fsf@gnu.org>
     [not found]   ` <<<<<3129ea6b-50bf-48e6-b3d0-b180828dfc5c@default>
     [not found]     ` <<<<<83wpll8bbi.fsf@gnu.org>
     [not found]       ` <<<<7648aec5-f939-4da3-8d4c-9ea03799c0db@default>
     [not found]         ` <<<<83mvmh87dl.fsf@gnu.org>
     [not found]           ` <<<1def2f0a-ed4f-4d6b-a735-ed4272189f68@default>
     [not found]             ` <<<5fb65302-d814-4e9d-83aa-c53516f15bcb@default>
     [not found]               ` <<<83poqxtgvh.fsf@gnu.org>
     [not found]                 ` <<0f1d535c-cb35-41a3-8f33-456a1e4566a5@default>
     [not found]                   ` <<83oa6htg7l.fsf@gnu.org>
2016-07-01 17:43                     ` Drew Adams
     [not found] <<<<<d3ea8bac-f3aa-48ec-a9f4-ff83f76bb393@default>
     [not found] ` <<<<<8337o9aogg.fsf@gnu.org>
     [not found]   ` <<<<3129ea6b-50bf-48e6-b3d0-b180828dfc5c@default>
     [not found]     ` <<<<83wpll8bbi.fsf@gnu.org>
     [not found]       ` <<<7648aec5-f939-4da3-8d4c-9ea03799c0db@default>
     [not found]         ` <<<83mvmh87dl.fsf@gnu.org>
     [not found]           ` <<1def2f0a-ed4f-4d6b-a735-ed4272189f68@default>
     [not found]             ` <<5fb65302-d814-4e9d-83aa-c53516f15bcb@default>
     [not found]               ` <<83poqxtgvh.fsf@gnu.org>
2016-07-01 17:30                 ` Drew Adams
2016-07-01 17:34                   ` Eli Zaretskii
     [not found] <<<d3ea8bac-f3aa-48ec-a9f4-ff83f76bb393@default>
     [not found] ` <<<8337o9aogg.fsf@gnu.org>
     [not found]   ` <<3129ea6b-50bf-48e6-b3d0-b180828dfc5c@default>
     [not found]     ` <<83wpll8bbi.fsf@gnu.org>
2016-06-19 16:23       ` Drew Adams
2016-06-19 16:34         ` Eli Zaretskii
     [not found] <<d3ea8bac-f3aa-48ec-a9f4-ff83f76bb393@default>
     [not found] ` <<8337o9aogg.fsf@gnu.org>
2016-06-19  6:53   ` Drew Adams
2016-06-19 15:09     ` Eli Zaretskii
2019-06-25 12:53       ` Lars Ingebrigtsen
2019-06-28 12:32         ` Andy Moreton
2019-06-28 13:04           ` Lars Ingebrigtsen
2016-06-19  0:12 Drew Adams
2016-06-19  2:42 ` Eli Zaretskii

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

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=831t3bs8ch.fsf@gnu.org \
    --to=eliz@gnu.org \
    --cc=23798@debbugs.gnu.org \
    --cc=drew.adams@oracle.com \
    /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 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).