aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/etags.c4
-rw-r--r--lib-src/movemail.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c
index 4684ca82935..556b7d701fc 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -5148,10 +5148,10 @@ Rust_entries (FILE *inf)
5148 cp = skip_spaces(cp); 5148 cp = skip_spaces(cp);
5149 name = cp; 5149 name = cp;
5150 5150
5151 // Skip 'pub' keyworld 5151 /* Skip 'pub' keyword. */
5152 (void)LOOKING_AT (cp, "pub"); 5152 (void)LOOKING_AT (cp, "pub");
5153 5153
5154 // Look for define 5154 /* Look for define. */
5155 if ((is_func = LOOKING_AT (cp, "fn")) 5155 if ((is_func = LOOKING_AT (cp, "fn"))
5156 || LOOKING_AT (cp, "enum") 5156 || LOOKING_AT (cp, "enum")
5157 || LOOKING_AT (cp, "struct") 5157 || LOOKING_AT (cp, "struct")
diff --git a/lib-src/movemail.c b/lib-src/movemail.c
index 407f95e4541..49c4bcf72db 100644
--- a/lib-src/movemail.c
+++ b/lib-src/movemail.c
@@ -97,7 +97,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
97 [18-Feb-97 andrewi] I now believe my comment above to be incorrect, 97 [18-Feb-97 andrewi] I now believe my comment above to be incorrect,
98 since it was based on a misunderstanding of how locking calls are 98 since it was based on a misunderstanding of how locking calls are
99 implemented and used on Unix. */ 99 implemented and used on Unix. */
100//#define DISABLE_DIRECT_ACCESS 100/* #define DISABLE_DIRECT_ACCESS */
101 101
102#include <fcntl.h> 102#include <fcntl.h>
103#endif /* WINDOWSNT */ 103#endif /* WINDOWSNT */