From 6118406c3eac88a06a414edf4a50b175fa339916 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Sat, 7 Aug 2021 09:02:58 +0200 Subject: style: formatting changes in scan-code.l * src/scan-code.l: Fix indentation. --- src/scan-code.l | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/scan-code.l b/src/scan-code.l index 416f11d4..fced37d2 100644 --- a/src/scan-code.l +++ b/src/scan-code.l @@ -92,8 +92,8 @@ splice (\\[ \f\t\v]*\n)* /* C style identifier. Must start with letter. Will be used for named symbol references. Shall be kept synchronized with scan-gram.l "letter" and "id". */ -letter [.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_] -id {letter}({letter}|[-0-9])* +letter [.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_] +id {letter}({letter}|[-0-9])* ref -?[0-9]+|{id}|"["{id}"]"|"$" %% @@ -203,7 +203,7 @@ ref -?[0-9]+|{id}|"["{id}"]"|"$" /* By default, grow the string obstack with the input. */ .|\n STRING_GROW (); - /* End of processing. */ + /* End of processing. */ <> STRING_FINISH (); return last_string; } -- cgit v1.2.1