aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorRichard M. Stallman2005-05-29 08:25:17 +0000
committerRichard M. Stallman2005-05-29 08:25:17 +0000
commit0e4d0c9af9b226de5f17dccd52840c1e8050fa14 (patch)
tree3302219c4b65192c4c304b5493b829766445d9f2 /src/buffer.c
parentbebcc4b15f19eece27de86b553ffc29f2953a48e (diff)
downloademacs-0e4d0c9af9b226de5f17dccd52840c1e8050fa14.tar.gz
emacs-0e4d0c9af9b226de5f17dccd52840c1e8050fa14.zip
(Fbuffer_local_value): Call indirect_variable.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c
index dfcf4a9a0b9..a287e45df78 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -889,6 +889,9 @@ is the default binding of the variable. */)
889 CHECK_BUFFER (buffer); 889 CHECK_BUFFER (buffer);
890 buf = XBUFFER (buffer); 890 buf = XBUFFER (buffer);
891 891
892 if (SYMBOLP (variable))
893 variable = indirect_variable (variable);
894
892 /* Look in local_var_list */ 895 /* Look in local_var_list */
893 result = Fassoc (variable, buf->local_var_alist); 896 result = Fassoc (variable, buf->local_var_alist);
894 if (NILP (result)) 897 if (NILP (result))