diff options
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 8 |
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; |