diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-04-19 15:44:55 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-04-19 15:44:55 +0200 |
commit | 06b605171f1c9d8b42bd3326a243b8b03d2e4e58 (patch) | |
tree | e96c135042999136bf0e75d113aae306e51983e3 /lisp/savehist.el | |
parent | 04c569546ad52f6270d8fc6d4aa0750950a0ac05 (diff) | |
download | emacs-06b605171f1c9d8b42bd3326a243b8b03d2e4e58.tar.gz |
lisp/*.el: Lexical-binding cleanup.
Diffstat (limited to 'lisp/savehist.el')
-rw-r--r-- | lisp/savehist.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/savehist.el b/lisp/savehist.el index f1060fb5150..653d0312a19 100644 --- a/lisp/savehist.el +++ b/lisp/savehist.el @@ -1,4 +1,4 @@ -;;; savehist.el --- Save minibuffer history. +;;; savehist.el --- Save minibuffer history ;; Copyright (C) 1997, 2005-2011 Free Software Foundation, Inc. @@ -254,6 +254,10 @@ Normally invoked by calling `savehist-mode' to unset the minor mode." (cancel-timer savehist-timer)) (setq savehist-timer nil))) +;; From XEmacs? +(defvar print-readably) +(defvar print-string-length) + (defun savehist-save (&optional auto-save) "Save the values of minibuffer history variables. Unbound symbols referenced in `savehist-additional-variables' are ignored. |