[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: 23-fyi-tags.patch
From: |
Paul Eggert |
Subject: |
Re: 23-fyi-tags.patch |
Date: |
Fri, 17 Aug 2001 09:35:13 -0700 (PDT) |
> From: Akim Demaille <address@hidden>
> Date: Fri, 17 Aug 2001 13:50:34 +0200
>
> Now that I have finally understood how to have this ... XEmacs
> work properly with the `include' TAGS directive, I discovered how
> useful this can be!
Perhaps you can explain it to us? :-) More seriously: does an
explanation belong in the Autoconf manual somewhere? I don't often
use XEmacs, so I hope it works with GNU Emacs.
> +ETAGS_SH = --lang=none --regex='/\([a-zA-Z_][a-zA-Z_0-9]*\)=/\1/' \
I'm afraid you'll have to spell out the character ranges, e.g.:
ETAGS_SH = --lang=none
--regex='/\([abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_][abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_0123456789]*\)=/\1/'
\
as 'a-z' isn't portable outside the C locale and (as far as I can see)
there's no guarantee that the regex is interpreted in the C locale.
Other than that, the change looks good if it works for you.