diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2008-12-15 16:45:55 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2008-12-15 16:45:55 +0000 |
commit | af09cfd7a9ef909a4970ae84cabcd0b2ba8d1695 (patch) | |
tree | 395da72a18298270d5e1994b359be8fd311c9ab7 /lisp | |
parent | 2364df5cff35f460f385889cc1ad6cf3141bb520 (diff) | |
download | emacs-af09cfd7a9ef909a4970ae84cabcd0b2ba8d1695.tar.gz |
* face-remap.el (text-scale-mode-step, buffer-face-mode-face):
* icomplete.el (icomplete-prospects-height):
* textmodes/bibtex.el (bibtex-cite-matcher-alist): Add :version tags.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 6 | ||||
-rw-r--r-- | lisp/face-remap.el | 6 | ||||
-rw-r--r-- | lisp/icomplete.el | 3 | ||||
-rw-r--r-- | lisp/textmodes/bibtex.el | 3 |
4 files changed, 14 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 63a5e921326..722ff6b63bf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,11 @@ 2008-12-15 Juanma Barranquero <lekktu@gmail.com> + * face-remap.el (text-scale-mode-step, buffer-face-mode-face): + * icomplete.el (icomplete-prospects-height): + * textmodes/bibtex.el (bibtex-cite-matcher-alist): Add :version tags. + +2008-12-15 Juanma Barranquero <lekktu@gmail.com> + * international/mule.el (find-auto-coding): Fix typo in docstring. * international/mule-cmds.el (select-safe-coding-system): diff --git a/lisp/face-remap.el b/lisp/face-remap.el index f87a86c70a0..2e5da9ba16d 100644 --- a/lisp/face-remap.el +++ b/lisp/face-remap.el @@ -188,7 +188,8 @@ not inherit from the global definition of FACE." "Scale factor used by `text-scale-mode'. Each positive or negative step scales the default face height by this amount." :group 'display - :type 'number) + :type 'number + :version "23.1") ;; current remapping cookie for text-scale-mode (defvar text-scale-mode-remapping nil) @@ -310,7 +311,8 @@ a top-level keymap, `text-scale-increase' or It may contain any value suitable for a `face' text property, including a face name, a list of face names, a face-attribute plist, etc." - :group 'display) + :group 'display + :version "23.1") ;; current remapping cookie for buffer-face-mode (defvar buffer-face-mode-remapping nil) diff --git a/lisp/icomplete.el b/lisp/icomplete.el index 7f395019825..8afb95fb65d 100644 --- a/lisp/icomplete.el +++ b/lisp/icomplete.el @@ -78,7 +78,8 @@ (+ 1 (/ (+ icomplete-prospects-length 20) (window-width))) "Maximum number of lines to use in the minibuffer." :type 'integer - :group 'icomplete) + :group 'icomplete + :version "23.1") (defcustom icomplete-compute-delay .3 "Completions-computation stall, used only with large-number completions. diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el index e5e3f4d7693..f3932f4f9b4 100644 --- a/lisp/textmodes/bibtex.el +++ b/lisp/textmodes/bibtex.el @@ -948,7 +948,8 @@ Case is significant. Used by `bibtex-search-crossref' and for font-locking." :group 'bibtex :type '(repeat (cons (regexp :tag "Regexp") - (integer :tag "Number")))) + (integer :tag "Number"))) + :version "23.1") (defcustom bibtex-expand-strings nil "If non-nil, expand strings when extracting the content of a BibTeX field." |