+2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * xdisp.c (select_frame_for_redisplay): Adjust for last change to
+ indirect_variable.
+ * eval.c (lisp_indirect_variable): New fun.
+ (Fuser_variable_p): Use it.
+
2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
* lisp.h (indirect_variable):
return Qnil;
}
+static Lisp_Object
+lisp_indirect_variable (Lisp_Object sym)
+{
+ XSETSYMBOL (sym, indirect_variable (XSYMBOL (sym)));
+ return sym;
+}
+
DEFUN ("user-variable-p", Fuser_variable_p, Suser_variable_p, 1, 1, 0,
doc: /* Return t if VARIABLE is intended to be set and modified by users.
\(The alternative is a variable used internally in a Lisp program.)
/* If indirect and there's an alias loop, don't check anything else. */
if (XSYMBOL (variable)->indirect_variable
- && NILP (internal_condition_case_1 (indirect_variable, variable,
+ && NILP (internal_condition_case_1 (lisp_indirect_variable, variable,
Qt, user_variable_p_eh)))
return Qnil;
select_frame_for_redisplay (frame)
Lisp_Object frame;
{
- Lisp_Object tail, sym, val;
+ Lisp_Object tail, symbol, val;
Lisp_Object old = selected_frame;
+ struct Lisp_Symbol *sym;
xassert (FRAMEP (frame) && FRAME_LIVE_P (XFRAME (frame)));
{
for (tail = XFRAME (frame)->param_alist; CONSP (tail); tail = XCDR (tail))
if (CONSP (XCAR (tail))
- && (sym = XCAR (XCAR (tail)),
- SYMBOLP (sym))
- && (sym = indirect_variable (sym),
- val = SYMBOL_VALUE (sym),
+ && (symbol = XCAR (XCAR (tail)),
+ SYMBOLP (symbol))
+ && (sym = indirect_variable (XSYMBOL (symbol)),
+ val = sym->value,
(BUFFER_LOCAL_VALUEP (val)))
&& XBUFFER_LOCAL_VALUE (val)->check_frame)
/* Use find_symbol_value rather than Fsymbol_value
to avoid an error if it is void. */
- find_symbol_value (sym);
+ find_symbol_value (symbol);
} while (!EQ (frame, old) && (frame = old, 1));
}