aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorEli Zaretskii2024-04-13 11:15:18 +0300
committerEli Zaretskii2024-04-13 11:15:18 +0300
commit02e795738b8877f6cf07f5ad2105449d7eb41000 (patch)
tree158e0b622acfd4df743c7fe9b9cd0090d9c0c62a /src/alloc.c
parentd5d61618c89899bd082cd29fd81dfb7cd88ea8b8 (diff)
downloademacs-02e795738b8877f6cf07f5ad2105449d7eb41000.tar.gz
emacs-02e795738b8877f6cf07f5ad2105449d7eb41000.zip
; * src/alloc.c (process_mark_stack): Fix commentary.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 2ffd2415447..6779d0ca9ce 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -7421,7 +7421,9 @@ process_mark_stack (ptrdiff_t base_sp)
7421 /* If the value is forwarded to a buffer or keyboard field, 7421 /* If the value is forwarded to a buffer or keyboard field,
7422 these are marked when we see the corresponding object. 7422 these are marked when we see the corresponding object.
7423 And if it's forwarded to a C variable, either it's not 7423 And if it's forwarded to a C variable, either it's not
7424 a Lisp_Object var, or it's staticpro'd already. */ 7424 a Lisp_Object var, or it's staticpro'd already, or it's
7425 reachable from font_style_table which is also
7426 staticpro'd. */
7425 break; 7427 break;
7426 default: emacs_abort (); 7428 default: emacs_abort ();
7427 } 7429 }