diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-05-22 23:58:55 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-05-22 23:59:36 -0700 |
commit | 5424436452bc0b3d8a62a8398f92d0c2db81e22b (patch) | |
tree | f011ba6d3bc6b03f36698c359c7d0df0f961469b /lib-src | |
parent | 38564f8a664347c42f7614d9c91e0d49e4a073e8 (diff) | |
download | emacs-5424436452bc0b3d8a62a8398f92d0c2db81e22b.tar.gz |
Avoid backslash-newline-newline in source code
* etc/refcards/Makefile (PDF_FRENCH):
* lib-src/etags.c (LOOP_ON_INPUT_LINES):
* lisp/dabbrev.el (dabbrev-check-other-buffers):
* lisp/org/org-id.el (org-id-link-to-org-use-id):
* lisp/org/org.el (org-support-shift-select, org-file-apps):
* src/alloc.c (CHECK_ALLOCATED_AND_LIVE)
(CHECK_ALLOCATED_AND_LIVE_SYMBOL):
* src/frame.h (FRAME_PIXEL_WIDTH_TO_TEXT_COLS):
* src/regex-emacs.c (PREFETCH_NOLIMIT):
* src/window.h (WINDOW_BUFFER):
Remove backslash-newline that immediately precedes another
newline, as this is not the usual style and is confusing.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/etags.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c index 949ab5a2c6b..6bd04d1f1c3 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c @@ -4282,7 +4282,7 @@ Yacc_entries (FILE *inf) while (perhaps_more_input (file_pointer) \ && (readline (&(line_buffer), file_pointer), \ (char_pointer) = (line_buffer).buffer, \ - true)) \ + true)) #define LOOKING_AT(cp, kw) /* kw is the keyword, a literal string */ \ ((assert ("" kw), true) /* syntax error if not a literal string */ \ |