aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorPaul Eggert2019-05-22 23:58:55 -0700
committerPaul Eggert2019-05-22 23:59:36 -0700
commit5424436452bc0b3d8a62a8398f92d0c2db81e22b (patch)
treef011ba6d3bc6b03f36698c359c7d0df0f961469b /src/alloc.c
parent38564f8a664347c42f7614d9c91e0d49e4a073e8 (diff)
downloademacs-5424436452bc0b3d8a62a8398f92d0c2db81e22b.tar.gz
emacs-5424436452bc0b3d8a62a8398f92d0c2db81e22b.zip
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 'src/alloc.c')
-rw-r--r--src/alloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c
index af4adb3856e..5c5b56d02e9 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -6384,7 +6384,7 @@ mark_object (Lisp_Object arg)
6384 do { \ 6384 do { \
6385 CHECK_ALLOCATED (); \ 6385 CHECK_ALLOCATED (); \
6386 CHECK_LIVE (LIVEP); \ 6386 CHECK_LIVE (LIVEP); \
6387 } while (0) \ 6387 } while (false)
6388 6388
6389 /* Check both of the above conditions, for symbols. */ 6389 /* Check both of the above conditions, for symbols. */
6390#define CHECK_ALLOCATED_AND_LIVE_SYMBOL() \ 6390#define CHECK_ALLOCATED_AND_LIVE_SYMBOL() \
@@ -6394,7 +6394,7 @@ mark_object (Lisp_Object arg)
6394 CHECK_ALLOCATED (); \ 6394 CHECK_ALLOCATED (); \
6395 CHECK_LIVE (live_symbol_p); \ 6395 CHECK_LIVE (live_symbol_p); \
6396 } \ 6396 } \
6397 } while (0) \ 6397 } while (false)
6398 6398
6399#else /* not GC_CHECK_MARKED_OBJECTS */ 6399#else /* not GC_CHECK_MARKED_OBJECTS */
6400 6400