aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index 4fc722e61cc..7cd38a0fe2e 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -1341,7 +1341,9 @@ If the third argument is incorrect, Emacs may crash.")
1341 case Bcurrent_column: 1341 case Bcurrent_column:
1342 { 1342 {
1343 Lisp_Object v1; 1343 Lisp_Object v1;
1344 BEFORE_POTENTIAL_GC ();
1344 XSETFASTINT (v1, current_column ()); 1345 XSETFASTINT (v1, current_column ());
1346 AFTER_POTENTIAL_GC ();
1345 PUSH (v1); 1347 PUSH (v1);
1346 break; 1348 break;
1347 } 1349 }