aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-03-15 09:43:39 +0000
committerGerd Moellmann2001-03-15 09:43:39 +0000
commit9b3a7dad95f249e368deadec1504ebf92970c288 (patch)
treeb2884bdcbdc30d94dbdf6fa4bd55a567bfc7044d /src
parenteae0e1234a1b8982cddb24935d87f235a67553b5 (diff)
downloademacs-9b3a7dad95f249e368deadec1504ebf92970c288.tar.gz
emacs-9b3a7dad95f249e368deadec1504ebf92970c288.zip
(swap_out_buffer_local_variables): Call
store_symval_forwarding with BUF null.
Diffstat (limited to 'src')
-rw-r--r--src/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c
index e3ce4ad4f4b..0dd65bf7f67 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -2234,7 +2234,7 @@ swap_out_buffer_local_variables (b)
2234 /* Store the current value into any forwarding in the symbol. */ 2234 /* Store the current value into any forwarding in the symbol. */
2235 store_symval_forwarding (sym, 2235 store_symval_forwarding (sym,
2236 XBUFFER_LOCAL_VALUE (XSYMBOL (sym)->value)->realvalue, 2236 XBUFFER_LOCAL_VALUE (XSYMBOL (sym)->value)->realvalue,
2237 XCDR (tem)); 2237 XCDR (tem), NULL);
2238 } 2238 }
2239 } 2239 }
2240} 2240}