diff options
author | Andreas Schwab <schwab@suse.de> | 1998-04-15 10:32:29 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-04-15 10:32:29 +0000 |
commit | 4da4775f0d8e1bb8098f5d83ffc0643d0817a788 (patch) | |
tree | 1c03d0529620ea19d549ccdc6272eb78932f7457 /src/regex.h | |
parent | edcb979fe496aedb4ddaa70e2382481711427392 (diff) | |
download | emacs-4da4775f0d8e1bb8098f5d83ffc0643d0817a788.tar.gz |
(RE_TRANSLATE_P): New macro.
Diffstat (limited to 'src/regex.h')
-rw-r--r-- | src/regex.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/regex.h b/src/regex.h index 24c568f1c93..72416837988 100644 --- a/src/regex.h +++ b/src/regex.h @@ -290,6 +290,7 @@ typedef enum #ifndef RE_TRANSLATE_TYPE #define RE_TRANSLATE_TYPE char * #define RE_TRANSLATE(TBL, C) ((TBL)[C]) +#define RE_TRANSLATE_P(TBL) (TBL) #endif struct re_pattern_buffer |