* lexer.c (lex_match_id_n): New function.
authorBen Pfaff <blp@gnu.org>
Wed, 5 Dec 2007 06:15:38 +0000 (06:15 +0000)
committerBen Pfaff <blp@gnu.org>
Wed, 5 Dec 2007 06:15:38 +0000 (06:15 +0000)
(lex_match_id): Reimplement in terms of lex_match_id_n.

* identifier.c (lex_id_match_n): New function.
(lex_id_match): Reimplement in terms of lex_id_match_n.

src/data/ChangeLog
src/data/identifier.c
src/data/identifier.h
src/language/lexer/ChangeLog
src/language/lexer/lexer.c
src/language/lexer/lexer.h

index 4facdaf1fe80d44b91a785bb433a61649ce7d2d6..6c3b4518f8b47794a67cf2d740320bd568e91af4 100644 (file)
@@ -1,3 +1,8 @@
+2007-12-04  Ben Pfaff  <blp@gnu.org>
+
+       * identifier.c (lex_id_match_n): New function.
+       (lex_id_match): Reimplement in terms of lex_id_match_n.
+
 2007-11-24  Ben Pfaff  <blp@gnu.org>
 
        * automake.mk (src_data_libdata_a_SOURCES): Add val-type.h, to fix
index 5c25cd0781c6520a7a525d778f2855a47f6a99f0..a52944e2757a11db7ace38273283d081581d0375 100644 (file)
@@ -74,11 +74,19 @@ lex_id_get_length (struct substring string)
    and those characters are identical to KEYWORD. */
 bool
 lex_id_match (struct substring keyword, struct substring token)
+{
+  return lex_id_match_n (keyword, token, 3);
+}
+
+/* Returns true if TOKEN is a case-insensitive match for at least
+   the first N characters of KEYWORD. */
+bool
+lex_id_match_n (struct substring keyword, struct substring token, size_t n)
 {
   size_t token_len = ss_length (token);
   size_t keyword_len = ss_length (keyword);
 
-  if (token_len >= 3 && token_len < keyword_len)
+  if (token_len >= n && token_len < keyword_len)
     return ss_equals_case (ss_head (keyword, token_len), token);
   else
     return ss_equals_case (keyword, token);
index a8c2a9fde11ace731e1c5878a7d6458dfa4b9248..352ef2eafc1b3b381a82d7ee55e96b4dc344623e 100644 (file)
@@ -60,6 +60,8 @@ size_t lex_id_get_length (struct substring);
 
 /* Comparing identifiers. */
 bool lex_id_match (struct substring keyword, struct substring token);
+bool lex_id_match_n (struct substring keyword, struct substring token,
+                     size_t n);
 int lex_id_to_token (struct substring);
 
 /* Identifier names. */
index 192debf8df320e45651c3a6b12025197dfe14c22..aea10c5f11aedbe95d2b1f8cd9c33467f5c70a6f 100644 (file)
@@ -1,3 +1,8 @@
+2007-12-04  Ben Pfaff  <blp@gnu.org>
+
+       * lexer.c (lex_match_id_n): New function.
+       (lex_match_id): Reimplement in terms of lex_match_id_n.
+
 2007-08-16  Ben Pfaff  <blp@gnu.org>
 
        Implement journaling.  Bug #17240.
index ac0af60005edc2e97f3c7c491309ceca51af8a10..d161287685beca3bd1956a025764152644805000 100644 (file)
@@ -548,9 +548,19 @@ lex_match (struct lexer *lexer, int t)
    Otherwise, returns false. */
 bool
 lex_match_id (struct lexer *lexer, const char *s)
+{
+  return lex_match_id_n (lexer, s, 3);
+}
+
+/* If the current token is the identifier S, skips it and returns
+   true.  The identifier may be abbreviated to its first N
+   letters.
+   Otherwise, returns false. */
+bool
+lex_match_id_n (struct lexer *lexer, const char *s, size_t n)
 {
   if (lexer->token == T_ID
-      && lex_id_match (ss_cstr (s), ss_cstr (lexer->tokid)))
+      && lex_id_match_n (ss_cstr (s), ss_cstr (lexer->tokid), n))
     {
       lex_get (lexer);
       return true;
index ada09ade9a89f1eb0d4f682a0d70c94cef9be04d..53732b49995f5fb60429e96f65e89a61ca108f4c 100644 (file)
@@ -53,6 +53,7 @@ bool lex_is_string (struct lexer *);
 /* Token matching functions. */
 bool lex_match (struct lexer *, int);
 bool lex_match_id (struct lexer *, const char *);
+bool lex_match_id_n (struct lexer *, const char *, size_t n);
 bool lex_match_int (struct lexer *, int);
 
 /* Forcible matching functions. */