[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
emacs-30 1463434907e: ; Eliminate C++ comments and typo
From: |
Po Lu |
Subject: |
emacs-30 1463434907e: ; Eliminate C++ comments and typo |
Date: |
Sat, 17 Aug 2024 10:01:33 -0400 (EDT) |
branch: emacs-30
commit 1463434907eeccd077f5d3c00309d1e75c7d63f4
Author: Po Lu <luangruo@yahoo.com>
Commit: Po Lu <luangruo@yahoo.com>
; Eliminate C++ comments and typo
* lib-src/etags.c (Rust_entries): Eliminate C++ comments and
typo.
---
lib-src/etags.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib-src/etags.c b/lib-src/etags.c
index 03bc55de03d..cbd5fed5e24 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -5144,10 +5144,10 @@ Rust_entries (FILE *inf)
cp = skip_spaces(cp);
name = cp;
- // Skip 'pub' keyworld
+ /* Skip 'pub' keyword. */
(void)LOOKING_AT (cp, "pub");
- // Look for define
+ /* Look for define. */
if ((is_func = LOOKING_AT (cp, "fn"))
|| LOOKING_AT (cp, "enum")
|| LOOKING_AT (cp, "struct")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- emacs-30 1463434907e: ; Eliminate C++ comments and typo,
Po Lu <=