summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/warnings.el
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2005-02-09 15:50:47 +0000
committerKim F. Storm <storm@cua.dk>2005-02-09 15:50:47 +0000
commitbf247b6ed0b5e96845e785302bdaa97fcf6a8b84 (patch)
tree3e5225520dfe10e9394f68088de2fe22027aa53f /lisp/emacs-lisp/warnings.el
parent1de0ae85b33c8d8cb77ab839f66d2df4f9aa7b94 (diff)
downloademacs-bf247b6ed0b5e96845e785302bdaa97fcf6a8b84.tar.gz
emacs-bf247b6ed0b5e96845e785302bdaa97fcf6a8b84.tar.bz2
emacs-bf247b6ed0b5e96845e785302bdaa97fcf6a8b84.zip
Change release version from 21.4 to 22.1 throughout.
Change development version from 21.3.50 to 22.0.50.
Diffstat (limited to 'lisp/emacs-lisp/warnings.el')
-rw-r--r--lisp/emacs-lisp/warnings.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/emacs-lisp/warnings.el b/lisp/emacs-lisp/warnings.el
index e2bf813f9ce..343eda970ce 100644
--- a/lisp/emacs-lisp/warnings.el
+++ b/lisp/emacs-lisp/warnings.el
@@ -31,7 +31,7 @@
(defgroup warnings nil
"Log and display warnings."
- :version "21.4"
+ :version "22.1"
:group 'lisp)
(defvar warning-levels
@@ -77,7 +77,7 @@ the warning is logged in the warnings buffer, but the buffer
is not immediately displayed. See also `warning-minimum-log-level'."
:group 'warnings
:type '(choice (const :emergency) (const :error) (const :warning))
- :version "21.4")
+ :version "22.1")
(defvaralias 'display-warning-minimum-level 'warning-minimum-level)
(defcustom warning-minimum-log-level :warning
@@ -86,7 +86,7 @@ If a warning severity level is lower than this,
the warning is completely ignored."
:group 'warnings
:type '(choice (const :emergency) (const :error) (const :warning))
- :version "21.4")
+ :version "22.1")
(defvaralias 'log-warning-minimum-level 'warning-minimum-log-level)
(defcustom warning-suppress-log-types nil
@@ -100,7 +100,7 @@ If TYPE is a symbol FOO, that is equivalent to the list (FOO),
so only the element (FOO) will match it."
:group 'warnings
:type '(repeat (repeat symbol))
- :version "21.4")
+ :version "22.1")
(defcustom warning-suppress-types nil
"List of warning types not to display immediately.
@@ -115,7 +115,7 @@ so only the element (FOO) will match it.
See also `warning-suppress-log-types'."
:group 'warnings
:type '(repeat (repeat symbol))
- :version "21.4")
+ :version "22.1")
;;; The autoload cookie is so that programs can bind this variable
;;; safely, testing the existing value, before they call one of the