Lisp_Object f_Vminibuffer_exit_hook;
+ Lisp_Object f_Vread_expression_history;
+
/* Function to call to read a buffer name. */
Lisp_Object f_Vread_buffer_function;
globals.f_Vquit_flag
#define Vread_buffer_function \
globals.f_Vread_buffer_function
+#define Vread_expression_history \
+ globals.f_Vread_expression_history
#define Vread_circle \
globals.f_Vread_circle
#define Vread_expression_map \
/* Minibuffer input and completion.
- Copyright (C) 1985, 1986, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
- 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
- 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
+
+Copyright (C) 1985, 1986, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+ 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
+ 2011 Free Software Foundation, Inc.
This file is part of GNU Emacs.
Qcase_fold_search = intern_c_string ("case-fold-search");
staticpro (&Qcase_fold_search);
+ DEFVAR_LISP ("read-expression-history", Vread_expression_history,
+ doc: /* A history list for arguments that are Lisp expressions to evaluate.
+For example, `eval-expression' uses this. */);
+ Vread_expression_history = Qnil;
+
Qread_expression_history = intern_c_string ("read-expression-history");
staticpro (&Qread_expression_history);