aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorPaul Eggert2011-03-15 16:07:15 -0700
committerPaul Eggert2011-03-15 16:07:15 -0700
commitb9b84fa9b19f892520aa9fe3479d3da03a9b0da6 (patch)
tree0f90d2f602ceefc68ab493b71c58fbe4799689e2 /src/data.c
parent112396d6542186a88963e08828cd66f6d7fe9543 (diff)
downloademacs-b9b84fa9b19f892520aa9fe3479d3da03a9b0da6.tar.gz
emacs-b9b84fa9b19f892520aa9fe3479d3da03a9b0da6.zip
* data.c (store_symval_forwarding): Rename local to avoid shadowing.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/data.c b/src/data.c
index 81c16fff489..50a6ac219c4 100644
--- a/src/data.c
+++ b/src/data.c
@@ -910,12 +910,12 @@ store_symval_forwarding (union Lisp_Fwd *valcontents, register Lisp_Object newva
910 910
911 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail)) 911 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail))
912 { 912 {
913 Lisp_Object buf; 913 Lisp_Object lbuf;
914 struct buffer *b; 914 struct buffer *b;
915 915
916 buf = Fcdr (XCAR (tail)); 916 lbuf = Fcdr (XCAR (tail));
917 if (!BUFFERP (buf)) continue; 917 if (!BUFFERP (lbuf)) continue;
918 b = XBUFFER (buf); 918 b = XBUFFER (lbuf);
919 919
920 if (! PER_BUFFER_VALUE_P (b, idx)) 920 if (! PER_BUFFER_VALUE_P (b, idx))
921 PER_BUFFER_VALUE (b, offset) = newval; 921 PER_BUFFER_VALUE (b, offset) = newval;