2020-08-28 15:18:15 +00:00
|
|
|
|
;;; warnings.el --- log and display warnings -*- lexical-binding:t -*-
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
2024-01-02 01:47:10 +00:00
|
|
|
|
;; Copyright (C) 2002-2024 Free Software Foundation, Inc.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
2019-05-25 20:43:06 +00:00
|
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
2003-05-30 23:31:15 +00:00
|
|
|
|
;; Keywords: internal
|
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 03:21:21 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2003-05-30 23:31:15 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 03:21:21 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; This file implements the entry points `warn', `lwarn'
|
2004-03-22 07:48:01 +00:00
|
|
|
|
;; and `display-warning'.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2022-07-28 12:38:54 +00:00
|
|
|
|
(require 'icons)
|
|
|
|
|
|
2003-05-30 23:31:15 +00:00
|
|
|
|
(defgroup warnings nil
|
|
|
|
|
"Log and display warnings."
|
2005-02-09 15:50:47 +00:00
|
|
|
|
:version "22.1"
|
2003-05-30 23:31:15 +00:00
|
|
|
|
:group 'lisp)
|
|
|
|
|
|
|
|
|
|
(defvar warning-levels
|
|
|
|
|
'((:emergency "Emergency%s: " ding)
|
|
|
|
|
(:error "Error%s: ")
|
|
|
|
|
(:warning "Warning%s: ")
|
|
|
|
|
(:debug "Debug%s: "))
|
|
|
|
|
"List of severity level definitions for `display-warning'.
|
|
|
|
|
Each element looks like (LEVEL STRING FUNCTION) and
|
|
|
|
|
defines LEVEL as a severity level. STRING specifies the
|
|
|
|
|
description of this level. STRING should use `%s' to
|
2003-08-06 01:09:33 +00:00
|
|
|
|
specify where to put the warning type information,
|
2003-05-30 23:31:15 +00:00
|
|
|
|
or it can omit the `%s' so as not to include that information.
|
|
|
|
|
|
|
|
|
|
The optional FUNCTION, if non-nil, is a function to call
|
|
|
|
|
with no arguments, to get the user's attention.
|
|
|
|
|
|
|
|
|
|
The standard levels are :emergency, :error, :warning and :debug.
|
|
|
|
|
See `display-warning' for documentation of their meanings.
|
|
|
|
|
Level :debug is ignored by default (see `warning-minimum-level').")
|
|
|
|
|
(put 'warning-levels 'risky-local-variable t)
|
|
|
|
|
|
|
|
|
|
;; These are for compatibility with XEmacs.
|
|
|
|
|
;; I don't think there is any chance of designing meaningful criteria
|
|
|
|
|
;; to distinguish so many levels.
|
|
|
|
|
(defvar warning-level-aliases
|
|
|
|
|
'((emergency . :emergency)
|
|
|
|
|
(error . :error)
|
|
|
|
|
(warning . :warning)
|
|
|
|
|
(notice . :warning)
|
|
|
|
|
(info . :warning)
|
|
|
|
|
(critical . :emergency)
|
|
|
|
|
(alarm . :emergency))
|
|
|
|
|
"Alist of aliases for severity levels for `display-warning'.
|
2011-05-05 00:06:10 +00:00
|
|
|
|
Each element looks like (ALIAS . LEVEL) and defines ALIAS as
|
|
|
|
|
equivalent to LEVEL. LEVEL must be defined in `warning-levels';
|
2003-05-30 23:31:15 +00:00
|
|
|
|
it may not itself be an alias.")
|
2020-12-14 14:16:13 +00:00
|
|
|
|
(make-obsolete-variable 'warning-level-aliases 'warning-levels "28.1")
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
2020-08-28 15:29:31 +00:00
|
|
|
|
(define-obsolete-variable-alias 'display-warning-minimum-level
|
|
|
|
|
'warning-minimum-level "28.1")
|
2003-05-30 23:31:15 +00:00
|
|
|
|
(defcustom warning-minimum-level :warning
|
|
|
|
|
"Minimum severity level for displaying the warning buffer.
|
|
|
|
|
If a warning's severity level is lower than this,
|
|
|
|
|
the warning is logged in the warnings buffer, but the buffer
|
|
|
|
|
is not immediately displayed. See also `warning-minimum-log-level'."
|
2005-06-17 11:49:17 +00:00
|
|
|
|
:type '(choice (const :emergency) (const :error)
|
|
|
|
|
(const :warning) (const :debug))
|
2005-02-09 15:50:47 +00:00
|
|
|
|
:version "22.1")
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
2020-08-28 15:29:31 +00:00
|
|
|
|
(define-obsolete-variable-alias 'log-warning-minimum-level
|
|
|
|
|
'warning-minimum-log-level "28.1")
|
2003-05-30 23:31:15 +00:00
|
|
|
|
(defcustom warning-minimum-log-level :warning
|
|
|
|
|
"Minimum severity level for logging a warning.
|
|
|
|
|
If a warning severity level is lower than this,
|
2005-06-17 11:49:17 +00:00
|
|
|
|
the warning is completely ignored.
|
|
|
|
|
Value must be lower or equal than `warning-minimum-level',
|
|
|
|
|
because warnings not logged aren't displayed either."
|
|
|
|
|
:type '(choice (const :emergency) (const :error)
|
|
|
|
|
(const :warning) (const :debug))
|
2005-02-09 15:50:47 +00:00
|
|
|
|
:version "22.1")
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
|
|
(defcustom warning-suppress-log-types nil
|
|
|
|
|
"List of warning types that should not be logged.
|
2003-08-06 01:09:33 +00:00
|
|
|
|
If any element of this list matches the TYPE argument to `display-warning',
|
2003-05-30 23:31:15 +00:00
|
|
|
|
the warning is completely ignored.
|
2003-08-06 01:09:33 +00:00
|
|
|
|
The element must match the first elements of TYPE.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
Thus, (foo bar) as an element matches (foo bar)
|
2003-08-06 01:09:33 +00:00
|
|
|
|
or (foo bar ANYTHING...) as TYPE.
|
|
|
|
|
If TYPE is a symbol FOO, that is equivalent to the list (FOO),
|
2003-05-30 23:31:15 +00:00
|
|
|
|
so only the element (FOO) will match it."
|
|
|
|
|
:type '(repeat (repeat symbol))
|
2005-02-09 15:50:47 +00:00
|
|
|
|
:version "22.1")
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
2023-10-25 21:50:39 +00:00
|
|
|
|
;;;###autoload
|
2003-05-30 23:31:15 +00:00
|
|
|
|
(defcustom warning-suppress-types nil
|
2003-08-06 01:09:33 +00:00
|
|
|
|
"List of warning types not to display immediately.
|
|
|
|
|
If any element of this list matches the TYPE argument to `display-warning',
|
2003-05-30 23:31:15 +00:00
|
|
|
|
the warning is logged nonetheless, but the warnings buffer is
|
|
|
|
|
not immediately displayed.
|
2003-08-06 01:09:33 +00:00
|
|
|
|
The element must match an initial segment of the list TYPE.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
Thus, (foo bar) as an element matches (foo bar)
|
2003-08-06 01:09:33 +00:00
|
|
|
|
or (foo bar ANYTHING...) as TYPE.
|
|
|
|
|
If TYPE is a symbol FOO, that is equivalent to the list (FOO),
|
2003-05-30 23:31:15 +00:00
|
|
|
|
so only the element (FOO) will match it.
|
|
|
|
|
See also `warning-suppress-log-types'."
|
|
|
|
|
:type '(repeat (repeat symbol))
|
2005-02-09 15:50:47 +00:00
|
|
|
|
:version "22.1")
|
2024-04-22 06:50:45 +00:00
|
|
|
|
|
|
|
|
|
(defcustom warning-display-at-bottom t
|
|
|
|
|
"Display the warning buffer at the bottom of the screen.
|
|
|
|
|
The output window will be scrolled to the bottom of the buffer
|
|
|
|
|
to show the last warning message."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:version "30.1")
|
|
|
|
|
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
2010-09-19 00:05:26 +00:00
|
|
|
|
;; The autoload cookie is so that programs can bind this variable
|
|
|
|
|
;; safely, testing the existing value, before they call one of the
|
|
|
|
|
;; warnings functions.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defvar warning-prefix-function nil
|
|
|
|
|
"Function to generate warning prefixes.
|
|
|
|
|
This function, if non-nil, is called with two arguments,
|
|
|
|
|
the severity level and its entry in `warning-levels',
|
|
|
|
|
and should return the entry that should actually be used.
|
|
|
|
|
The warnings buffer is current when this function is called
|
|
|
|
|
and the function can insert text in it. This text becomes
|
|
|
|
|
the beginning of the warning.")
|
|
|
|
|
|
2010-09-19 00:05:26 +00:00
|
|
|
|
;; The autoload cookie is so that programs can bind this variable
|
|
|
|
|
;; safely, testing the existing value, before they call one of the
|
|
|
|
|
;; warnings functions.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defvar warning-series nil
|
|
|
|
|
"Non-nil means treat multiple `display-warning' calls as a series.
|
|
|
|
|
A marker indicates a position in the warnings buffer
|
|
|
|
|
which is the start of the current series; it means that
|
|
|
|
|
additional warnings in the same buffer should not move point.
|
2011-05-05 00:06:10 +00:00
|
|
|
|
If t, the next warning begins a series (and stores a marker here).
|
2003-05-30 23:31:15 +00:00
|
|
|
|
A symbol with a function definition is like t, except
|
|
|
|
|
also call that function before the next warning.")
|
|
|
|
|
(put 'warning-series 'risky-local-variable t)
|
|
|
|
|
|
2010-09-19 00:05:26 +00:00
|
|
|
|
;; The autoload cookie is so that programs can bind this variable
|
|
|
|
|
;; safely, testing the existing value, before they call one of the
|
|
|
|
|
;; warnings functions.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defvar warning-fill-prefix nil
|
|
|
|
|
"Non-nil means fill each warning text using this string as `fill-prefix'.")
|
|
|
|
|
|
2019-06-17 00:31:49 +00:00
|
|
|
|
;; I don't see why it can't just use the buffer-local fill-column,
|
|
|
|
|
;; but at least this is better than hard-coding 78.
|
|
|
|
|
(defvar warning-fill-column 78
|
|
|
|
|
"Value to use for `fill-column' when filling warnings.")
|
|
|
|
|
|
2010-09-19 00:05:26 +00:00
|
|
|
|
;; The autoload cookie is so that programs can bind this variable
|
|
|
|
|
;; safely, testing the existing value, before they call one of the
|
|
|
|
|
;; warnings functions.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
;;;###autoload
|
* textmodes/tex-mode.el (tex-alt-dvi-print-command)
(tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
(tex-start-options, slitex-run-command, latex-run-command)
(tex-run-command, tex-directory):
* textmodes/ispell.el (ispell-html-skip-alists)
(ispell-tex-skip-alists, ispell-tex-skip-alists):
* textmodes/fill.el (adaptive-fill-first-line-regexp):
(adaptive-fill-regexp):
* textmodes/dns-mode.el (auto-mode-alist):
* progmodes/python.el (interpreter-mode-alist):
* progmodes/etags.el (tags-compression-info-list):
* progmodes/etags.el (tags-file-name):
* net/browse-url.el (browse-url-galeon-program)
(browse-url-firefox-program):
* mail/sendmail.el (mail-signature-file)
(mail-citation-prefix-regexp):
* international/mule-conf.el (eight-bit):
* international/latexenc.el (latex-inputenc-coding-alist):
* international/fontset.el (x-pixel-size-width-font-regexp):
* emacs-lisp/warnings.el (warning-type-format):
* emacs-lisp/trace.el (trace-buffer):
* emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
(emacs-lisp-mode-map):
* calendar/holidays.el (holiday-solar-holidays)
(holiday-bahai-holidays, holiday-islamic-holidays)
(holiday-christian-holidays, holiday-hebrew-holidays)
(hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
(hebrew-holidays-1, holiday-oriental-holidays)
(holiday-general-holidays):
* x-dnd.el (x-dnd-known-types):
* tool-bar.el (tool-bar):
* startup.el (site-run-file):
* shell.el (shell-dumb-shell-regexp):
* rfn-eshadow.el (file-name-shadow-tty-properties)
(file-name-shadow-properties):
* paths.el (remote-shell-program, news-directory):
* mouse.el ([C-down-mouse-3]):
* menu-bar.el (menu-bar-tools-menu):
* jka-cmpr-hook.el (jka-compr-load-suffixes)
(jka-compr-mode-alist-additions, jka-compr-compression-info-list)
(jka-compr-compression-info-list):
* isearch.el (search-whitespace-regexp):
* image-file.el (image-file-name-extensions):
* find-dired.el (find-ls-option):
* files.el (directory-listing-before-filename-regexp)
(directory-free-space-args, insert-directory-program)
(list-directory-brief-switches, magic-fallback-mode-alist)
(magic-fallback-mode-alist, auto-mode-interpreter-regexp)
(automount-dir-prefix):
* faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
(x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
(face-font-registry-alternatives, face-font-registry-alternatives)
(face-font-family-alternatives):
* facemenu.el (facemenu-add-new-face, facemenu-background-menu)
(facemenu-foreground-menu, facemenu-face-menu):
* epa-hook.el (epa-file-name-regexp):
* dnd.el (dnd-protocol-alist):
* textmodes/rst.el (auto-mode-alist):
* button.el (default-button): Purecopy strings.
2009-11-06 05:16:23 +00:00
|
|
|
|
(defvar warning-type-format (purecopy " (%s)")
|
2003-08-06 01:09:33 +00:00
|
|
|
|
"Format for displaying the warning type in the warning message.
|
|
|
|
|
The result of formatting the type this way gets included in the
|
2003-05-30 23:31:15 +00:00
|
|
|
|
message under the control of the string in `warning-levels'.")
|
|
|
|
|
|
|
|
|
|
(defun warning-numeric-level (level)
|
|
|
|
|
"Return a numeric measure of the warning severity level LEVEL."
|
|
|
|
|
(let* ((elt (assq level warning-levels))
|
|
|
|
|
(link (memq elt warning-levels)))
|
|
|
|
|
(length link)))
|
|
|
|
|
|
2003-08-06 01:09:33 +00:00
|
|
|
|
(defun warning-suppress-p (type suppress-list)
|
|
|
|
|
"Non-nil if a warning with type TYPE should be suppressed.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
SUPPRESS-LIST is the list of kinds of warnings to suppress."
|
|
|
|
|
(let (some-match)
|
|
|
|
|
(dolist (elt suppress-list)
|
2003-08-06 01:09:33 +00:00
|
|
|
|
(if (symbolp type)
|
|
|
|
|
;; If TYPE is a symbol, the ELT must be (TYPE).
|
2003-05-30 23:31:15 +00:00
|
|
|
|
(if (and (consp elt)
|
2003-08-06 01:09:33 +00:00
|
|
|
|
(eq (car elt) type)
|
2003-05-30 23:31:15 +00:00
|
|
|
|
(null (cdr elt)))
|
|
|
|
|
(setq some-match t))
|
2003-08-06 01:09:33 +00:00
|
|
|
|
;; If TYPE is a list, ELT must match it or some initial segment of it.
|
|
|
|
|
(let ((tem1 type)
|
2003-05-30 23:31:15 +00:00
|
|
|
|
(tem2 elt)
|
|
|
|
|
(match t))
|
|
|
|
|
;; Check elements of ELT until we run out of them.
|
|
|
|
|
(while tem2
|
|
|
|
|
(if (not (equal (car tem1) (car tem2)))
|
|
|
|
|
(setq match nil))
|
|
|
|
|
(setq tem1 (cdr tem1)
|
|
|
|
|
tem2 (cdr tem2)))
|
2003-08-06 01:09:33 +00:00
|
|
|
|
;; If ELT is an initial segment of TYPE, MATCH is t now.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
;; So set SOME-MATCH.
|
|
|
|
|
(if match
|
|
|
|
|
(setq some-match t)))))
|
|
|
|
|
;; If some element of SUPPRESS-LIST matched,
|
|
|
|
|
;; we return t.
|
|
|
|
|
some-match))
|
|
|
|
|
|
2022-07-28 12:38:54 +00:00
|
|
|
|
(define-icon warnings-suppress button
|
2023-01-17 13:44:51 +00:00
|
|
|
|
`((emoji "⛔")
|
|
|
|
|
;; Many MS-Windows console fonts don't have good glyphs for U+25A0.
|
|
|
|
|
(symbol ,(if (and (eq system-type 'windows-nt)
|
|
|
|
|
(null window-system))
|
|
|
|
|
" » "
|
|
|
|
|
" ■ "))
|
2022-07-28 12:38:54 +00:00
|
|
|
|
(text " stop "))
|
|
|
|
|
"Suppress warnings."
|
|
|
|
|
:version "29.1"
|
2022-08-08 12:08:47 +00:00
|
|
|
|
:help-echo "Click to suppress this warning type")
|
2022-07-28 12:38:54 +00:00
|
|
|
|
|
|
|
|
|
(defun warnings-suppress (type)
|
|
|
|
|
(pcase (car
|
|
|
|
|
(read-multiple-choice
|
|
|
|
|
(format "Suppress `%s' warnings? " type)
|
|
|
|
|
`((?y ,(format "yes, ignore `%s' warnings completely" type))
|
|
|
|
|
(?n "no, just disable showing them")
|
|
|
|
|
(?q "quit and do nothing"))))
|
|
|
|
|
(?y
|
|
|
|
|
(customize-save-variable 'warning-suppress-log-types
|
2024-03-29 00:34:23 +00:00
|
|
|
|
(if (consp type)
|
|
|
|
|
(cons type warning-suppress-log-types)
|
|
|
|
|
(cons (list type) warning-suppress-log-types))))
|
2022-07-28 12:38:54 +00:00
|
|
|
|
(?n
|
|
|
|
|
(customize-save-variable 'warning-suppress-types
|
2024-03-29 00:34:23 +00:00
|
|
|
|
(if (consp type)
|
|
|
|
|
(cons type warning-suppress-types)
|
|
|
|
|
(cons (list type) warning-suppress-types))))
|
2022-07-28 12:38:54 +00:00
|
|
|
|
(_ (message "Exiting"))))
|
2020-09-04 04:28:21 +00:00
|
|
|
|
|
2003-05-30 23:31:15 +00:00
|
|
|
|
;;;###autoload
|
2003-08-06 01:09:33 +00:00
|
|
|
|
(defun display-warning (type message &optional level buffer-name)
|
2003-05-30 23:31:15 +00:00
|
|
|
|
"Display a warning message, MESSAGE.
|
2003-08-06 01:09:33 +00:00
|
|
|
|
TYPE is the warning type: either a custom group name (a symbol),
|
|
|
|
|
or a list of symbols whose first element is a custom group name.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
\(The rest of the symbols represent subcategories, for warning purposes
|
|
|
|
|
only, and you can use whatever symbols you like.)
|
|
|
|
|
|
2005-06-17 11:49:17 +00:00
|
|
|
|
LEVEL should be either :debug, :warning, :error, or :emergency
|
|
|
|
|
\(but see `warning-minimum-level' and `warning-minimum-log-level').
|
2006-05-01 20:16:40 +00:00
|
|
|
|
Default is :warning.
|
2005-06-17 11:49:17 +00:00
|
|
|
|
|
2003-05-30 23:31:15 +00:00
|
|
|
|
:emergency -- a problem that will seriously impair Emacs operation soon
|
|
|
|
|
if you do not attend to it promptly.
|
|
|
|
|
:error -- data or circumstances that are inherently wrong.
|
|
|
|
|
:warning -- data or circumstances that are not inherently wrong,
|
|
|
|
|
but raise suspicion of a possible problem.
|
|
|
|
|
:debug -- info for debugging only.
|
|
|
|
|
|
2007-03-31 19:41:46 +00:00
|
|
|
|
BUFFER-NAME, if specified, is the name of the buffer for logging
|
|
|
|
|
the warning. By default, it is `*Warnings*'. If this function
|
|
|
|
|
has to create the buffer, it disables undo in the buffer.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
|
|
See the `warnings' custom group for user customization features.
|
|
|
|
|
|
2019-06-17 00:31:49 +00:00
|
|
|
|
See also `warning-series', `warning-prefix-function',
|
|
|
|
|
`warning-fill-prefix', and `warning-fill-column' for additional
|
2020-09-04 04:28:21 +00:00
|
|
|
|
programming features.
|
|
|
|
|
|
|
|
|
|
This will also display buttons allowing the user to permanently
|
|
|
|
|
disable automatic display of the warning or disable the warning
|
|
|
|
|
entirely by setting `warning-suppress-types' or
|
|
|
|
|
`warning-suppress-log-types' on their behalf."
|
2015-06-13 02:26:21 +00:00
|
|
|
|
(if (not (or after-init-time noninteractive (daemonp)))
|
|
|
|
|
;; Ensure warnings that happen early in the startup sequence
|
|
|
|
|
;; are visible when startup completes (bug#20792).
|
|
|
|
|
(delay-warning type message level buffer-name)
|
|
|
|
|
(unless level
|
|
|
|
|
(setq level :warning))
|
|
|
|
|
(unless buffer-name
|
|
|
|
|
(setq buffer-name "*Warnings*"))
|
2020-12-14 14:16:13 +00:00
|
|
|
|
(with-suppressed-warnings ((obsolete warning-level-aliases))
|
Mark if-let and when-let obsolete
* lisp/subr.el (if-let*, when-let*, if-let, when-let): Mark
if-let and when-let obsolete (bug#73853 and elsewhere). Move
docstring text around so that if-let* and when-let* descriptions
no longer refer to if-let and when-let.
* etc/NEWS: Announce the change.
* admin/admin.el (reminder-for-release-blocking-bugs):
* doc/misc/erc.texi (display-buffer):
* lisp/ansi-color.el (ansi-color-apply)
(ansi-color--face-vec-face):
* lisp/ansi-osc.el (ansi-osc-apply-on-region)
(ansi-osc-hyperlink):
* lisp/arc-mode.el (archive-goto-file)
(archive-next-file-displayer):
* lisp/auth-source-pass.el (auth-source-pass-search)
(auth-source-pass--parse-data)
(auth-source-pass--find-match-many):
* lisp/autorevert.el (auto-revert-notify-rm-watch):
* lisp/buff-menu.el (Buffer-menu-unmark-all-buffers)
(Buffer-menu-group-by-root):
* lisp/calendar/parse-time.el (parse-iso8601-time-string):
* lisp/cedet/pulse.el (pulse-tick):
* lisp/comint.el (comint--fontify-input-ppss-flush-indirect)
(comint--intersect-regions):
* lisp/completion-preview.el (completion-preview--try-table)
(completion-preview--capf-wrapper, completion-preview--update):
* lisp/cus-edit.el (setopt--set)
(custom-dirlocals-maybe-update-cons, custom-dirlocals-validate):
* lisp/custom.el (load-theme):
* lisp/descr-text.el (describe-char):
* lisp/desktop.el (desktop--emacs-pid-running-p):
* lisp/dired-x.el (menu):
* lisp/dired.el (dired-font-lock-keywords)
(dired-insert-directory, dired--insert-disk-space, dired-mode):
* lisp/dnd.el (dnd-handle-multiple-urls):
* lisp/dom.el (dom-remove-attribute):
* lisp/emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
* lisp/emacs-lisp/bytecomp.el (bytecomp--custom-declare):
* lisp/emacs-lisp/comp-common.el (comp-function-type-spec):
* lisp/emacs-lisp/comp-cstr.el (comp--all-classes)
(comp-cstr-set-range-for-arithm, comp--cstr-union-1-no-mem)
(comp-cstr-intersection-no-mem, comp-cstr-fixnum-p)
(comp-cstr-type-p):
* lisp/emacs-lisp/comp-run.el (comp-subr-trampoline-install)
(native--compile-async):
* lisp/emacs-lisp/comp.el (comp--get-function-cstr)
(comp--function-pure-p, comp--intern-func-in-ctxt)
(comp--addr-to-bb-name, comp--emit-assume, comp--maybe-add-vmvar)
(comp--add-call-cstr, comp--compute-dominator-tree)
(comp--dom-tree-walker, comp--ssa-rename)
(comp--function-call-maybe-fold, comp--fwprop-call)
(comp--call-optim-func):
* lisp/emacs-lisp/edebug.el (edebug-global-prefix)
(edebug-remove-instrumentation):
* lisp/emacs-lisp/eieio.el (initialize-instance):
* lisp/emacs-lisp/ert-x.el (ert-resource-directory):
* lisp/emacs-lisp/ert.el (ert--expand-should-1)
(ert-test-location, ert-write-junit-test-report)
(ert-test--erts-test):
* lisp/emacs-lisp/icons.el (icon-complete-spec, icon-string)
(icons--create):
* lisp/emacs-lisp/lisp-mode.el (lisp--local-defform-body-p):
* lisp/emacs-lisp/loaddefs-gen.el
(loaddefs-generate--make-autoload)
(loaddefs-generate--parse-file):
* lisp/emacs-lisp/multisession.el
(multisession-edit-mode--revert, multisession-edit-value):
* lisp/emacs-lisp/package-vc.el (package-vc--read-archive-data)
(package-vc--version, package-vc--clone):
* lisp/emacs-lisp/package.el (package--reload-previously-loaded):
* lisp/emacs-lisp/pp.el (pp--insert-lisp):
* lisp/emacs-lisp/subr-x.el (add-display-text-property):
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-print):
* lisp/emacs-lisp/timer.el (run-at-time):
* lisp/emacs-lisp/vtable.el (vtable-goto-table)
(vtable-goto-column, vtable-update-object, vtable--insert-line)
(vtable--compute-widths, vtable--make-keymap):
* lisp/emacs-lisp/warnings.el (display-warning):
* lisp/epa-file.el (epa-file-insert-file-contents):
* lisp/epa.el (epa-show-key):
* lisp/erc/erc-backend.el (erc--split-line, erc--conceal-prompt)
(PRIVMSG, erc--get-isupport-entry):
* lisp/erc/erc-button.el (erc-button-add-nickname-buttons)
(erc--button-next):
* lisp/erc/erc-common.el (erc--find-group):
* lisp/erc/erc-fill.el (erc-fill, erc-fill-static)
(erc-fill--wrap-escape-hidden-speaker)
(erc-fill--wrap-unmerge-on-date-stamp)
(erc-fill--wrap-massage-initial-message-post-clear)
(erc-fill-wrap, erc-fill--wrap-rejigger-region):
* lisp/erc/erc-goodies.el (erc--scrolltobottom-all)
(erc--keep-place-indicator-on-window-buffer-change)
(keep-place-indicator, erc--keep-place-indicator-adjust-on-clear)
(erc-keep-place-move, erc--command-indicator-display):
* lisp/erc/erc-ibuffer.el (erc-members):
* lisp/erc/erc-join.el (erc-join--remove-requested-channel)
(erc-autojoin--join):
* lisp/erc/erc-networks.el
(erc-networks--id-qualifying-init-parts, erc-networks--id-reload)
(erc-networks--id-ensure-comparable)
(erc-networks--reclaim-orphaned-target-buffers)
(erc-networks--server-select):
* lisp/erc/erc-nicks.el (erc-nicks-invert)
(erc-nicks--redirect-face-widget-link, erc-nicks--highlight)
(erc-nicks--highlight-button)
(erc-nicks--list-faces-help-button-action, erc-nicks-list-faces)
(erc-nicks-refresh, erc-nicks--colors-from-faces)
(erc-nicks--track-prioritize)
(erc-nicks--remember-face-for-track):
* lisp/erc/erc-notify.el (querypoll, erc--querypoll-get-next)
(erc--querypoll-on-352, erc--querypoll-send):
* lisp/erc/erc-sasl.el (erc-sasl--read-password):
* lisp/erc/erc-services.el
(erc-services-issue-ghost-and-retry-nick):
* lisp/erc/erc-speedbar.el (erc-speedbar--ensure, nickbar)
(erc-speedbar-toggle-nicknames-window-lock)
(erc-speedbar--compose-nicks-face):
* lisp/erc/erc-stamp.el (erc-stamp--recover-on-reconnect)
(erc-stamp-prefix-log-filter, erc--conceal-prompt)
(erc--insert-timestamp-left, erc-insert-timestamp-right)
(erc-stamp--defer-date-insertion-on-post-modify)
(erc-insert-timestamp-left-and-right)
(erc-stamp--redo-right-stamp-post-clear)
(erc-stamp--reset-on-clear, erc-stamp--dedupe-date-stamps):
* lisp/erc/erc-status-sidebar.el (bufbar)
(erc-status-sidebar-prefer-target-as-name)
(erc-status-sidebar-default-allsort, erc-status-sidebar-click):
* lisp/erc/erc-track.el (erc-track--shortened-names-get)
(erc-track--setup, erc-track--select-mode-line-face)
(erc-track-modified-channels, erc-track--collect-faces-in)
(erc-track--switch-buffer, erc-track--replace-killed-buffer):
* lisp/erc/erc-truncate.el (erc-truncate--setup)
(erc-truncate-buffer):
* lisp/erc/erc.el (erc--ensure-query-member)
(erc--ensure-query-members, erc--remove-channel-users-but)
(erc--cusr-change-status, erc--find-mode, erc--update-modules)
(erc-log-irc-protocol, erc--refresh-prompt)
(erc--restore-important-text-props)
(erc--order-text-properties-from-hash, erc-send-input-line)
(erc-cmd-IGNORE, erc--unignore-user, erc-cmd-QUERY)
(erc-cmd-BANLIST, erc--speakerize-nick)
(erc--format-speaker-input-message, erc-channel-receive-names)
(erc-send-current-line, erc-format-target-and/or-network)
(erc-kill-buffer-function, erc-restore-text-properties)
(erc--get-eq-comparable-cmd):
* lisp/eshell/em-alias.el (eshell-maybe-replace-by-alias--which)
(eshell-maybe-replace-by-alias):
* lisp/eshell/em-glob.el (eshell-glob-convert):
* lisp/eshell/em-pred.el (eshell-pred-user-or-group)
(eshell-pred-file-time, eshell-pred-file-type)
(eshell-pred-file-mode, eshell-pred-file-links)
(eshell-pred-file-size):
* lisp/eshell/em-prompt.el (eshell-forward-paragraph)
(eshell-next-prompt):
* lisp/eshell/esh-arg.el (eshell-resolve-current-argument):
* lisp/eshell/esh-cmd.el (eshell-do-eval, eshell/which)
(eshell-plain-command--which, eshell-plain-command):
* lisp/eshell/esh-io.el (eshell-duplicate-handles)
(eshell-protect-handles, eshell-get-target, eshell-close-target):
* lisp/eshell/esh-proc.el (eshell-sentinel):
* lisp/eshell/esh-var.el (eshell-parse-variable-ref)
(eshell-get-variable, eshell-set-variable):
* lisp/faces.el (face-at-point):
* lisp/ffap.el (ffap-in-project):
* lisp/filenotify.el (file-notify--rm-descriptor):
* lisp/files-x.el (read-dir-locals-file)
(connection-local-update-profile-variables)
(connection-local-value):
* lisp/files.el (file-remote-p, abbreviate-file-name)
(set-auto-mode, hack-local-variables)
(revert-buffer-restore-read-only):
* lisp/find-dired.el (find-dired-sort-by-filename):
* lisp/font-lock.el (font-lock--filter-keywords):
* lisp/gnus/gnus-art.el (article-emojize-symbols):
* lisp/gnus/gnus-int.el (gnus-close-server):
* lisp/gnus/gnus-search.el (gnus-search-transform)
(gnus-search-indexed-parse-output, gnus-search-server-to-engine):
* lisp/gnus/gnus-sum.el (gnus-collect-urls, gnus-shorten-url):
* lisp/gnus/gnus.el (gnus-check-backend-function):
* lisp/gnus/message.el (message-send-mail):
* lisp/gnus/mml.el (mml-generate-mime, mml-insert-mime-headers):
* lisp/gnus/nnatom.el (nnatom--read-feed, nnatom--read-article)
(nnatom--read-article-or-group-authors, nnatom--read-publish)
(nnatom--read-update, nnatom--read-links):
* lisp/gnus/nnfeed.el (nnfeed--read-server, nnfeed--write-server)
(nnfeed--parse-feed, nnfeed--group-data, nnfeed-retrieve-article)
(nnfeed-retrieve-headers, nnfeed--print-part)
(nnfeed-request-article, nnfeed-request-group)
(nnfeed-request-list, nnfeed--group-description)
(nnfeed-request-group-description)
(nnfeed-request-list-newsgroups, nnfeed-request-rename-group):
* lisp/gnus/nnmh.el (nnmh-update-gnus-unreads):
* lisp/help-fns.el (help-find-source)
(help-fns--insert-menu-bindings, help-fns--mention-first-release)
(help-fns--mention-shortdoc-groups)
(help-fns--customize-variable-version)
(help-fns--face-custom-version-info, describe-mode):
* lisp/help-mode.el (help-make-xrefs):
* lisp/help.el (help-key-description, help--describe-command):
* lisp/hfy-cmap.el (htmlfontify-load-rgb-file):
* lisp/ibuf-ext.el (ibuffer-jump-to-filter-group)
(ibuffer-kill-filter-group, ibuffer-kill-line)
(ibuffer-save-filter-groups, ibuffer-save-filters, filename)
(basename, file-extension, ibuffer-diff-buffer-with-file-1)
(ibuffer-mark-by-file-name-regexp)
(ibuffer-mark-by-content-regexp):
* lisp/ibuf-macs.el (ibuffer-aif, ibuffer-awhen):
* lisp/ibuffer.el (ibuffer-mouse-toggle-mark)
(ibuffer-toggle-marks, ibuffer-mark-interactive)
(ibuffer-compile-format, process, ibuffer-map-lines):
* lisp/image.el (image--compute-map)
(image--compute-original-map):
* lisp/image/exif.el (exif-parse-buffer):
* lisp/image/image-converter.el (image-convert-p, image-convert)
(image-converter--find-converter):
* lisp/image/image-dired-util.el
(image-dired-file-name-at-point):
* lisp/image/image-dired.el (image-dired-track-original-file)
(image-dired--on-file-in-dired-buffer)
(image-dired--with-thumbnail-buffer)
(image-dired-jump-original-dired-buffer)
(image-dired--slideshow-step, image-dired-display-image):
* lisp/image/wallpaper.el (wallpaper--init-action-kill)
(wallpaper--find-setter, wallpaper--find-command)
(wallpaper--find-command-args, wallpaper--x-monitor-name):
* lisp/info-look.el (info-lookup-interactive-arguments)
(info-complete)::(:mode):
* lisp/info.el (info-pop-to-buffer, Info-read-node-name-1):
* lisp/international/emoji.el (emoji--adjust-displayable-1)
(emoji--add-recent):
* lisp/jsonrpc.el (jsonrpc--call-deferred)
(jsonrpc--process-sentinel, jsonrpc--remove):
* lisp/keymap.el (keymap-local-lookup):
* lisp/mail/emacsbug.el (report-emacs-bug-hook)
(submit-emacs-patch):
* lisp/mail/ietf-drums.el (ietf-drums-parse-addresses):
* lisp/mail/mailclient.el (mailclient-send-it):
* lisp/mail/rfc6068.el (rfc6068-parse-mailto-url):
* lisp/mail/undigest.el (rmail-digest-parse-mixed-mime):
* lisp/minibuffer.el (completion-metadata-get)
(completions--after-change)
(minibuffer-visible-completions--filter):
* lisp/net/browse-url.el (browse-url-url-at-point)
(browse-url-file-url, browse-url-emacs):
* lisp/net/dbus.el (dbus-byte-array-to-string)
(dbus-monitor-goto-serial):
* lisp/net/dictionary.el (dictionary-search):
* lisp/net/eww.el (eww--download-directory)
(eww-auto-rename-buffer, eww-open-in-new-buffer, eww-submit)
(eww-follow-link, eww-read-alternate-url)
(eww-copy-alternate-url):
* lisp/net/goto-addr.el (goto-address-at-point):
* lisp/net/mailcap.el (mailcap-mime-info):
* lisp/net/rcirc.el (rcirc, rcirc-connect, rcirc-send-string)
(rcirc-kill-buffer-hook, rcirc-print, rcirc-when)
(rcirc-color-attributes, rcirc-handler-NICK)
(rcirc-handler-TAGMSG, rcirc-handler-BATCH):
* lisp/net/shr.el (shr-descend, shr-adaptive-fill-function)
(shr-correct-dom-case, shr-tag-a):
* lisp/net/sieve.el (sieve-manage-quit):
* lisp/outline.el (outline-cycle-buffer):
* lisp/pcmpl-git.el (pcmpl-git--tracked-file-predicate):
* lisp/proced.el (proced-auto-update-timer):
* lisp/progmodes/bug-reference.el
(bug-reference-try-setup-from-vc):
* lisp/progmodes/c-ts-common.el (c-ts-common--fill-paragraph):
* lisp/progmodes/c-ts-mode.el (c-ts-mode--preproc-offset)
(c-ts-mode--anchor-prev-sibling, c-ts-mode-indent-defun):
* lisp/progmodes/compile.el (compilation-error-properties)
(compilation-find-file-1):
* lisp/progmodes/eglot.el (eglot--check-object)
(eglot--read-server, eglot-upgrade-eglot)
(eglot-handle-notification, eglot--CompletionParams)
(eglot-completion-at-point, eglot--sig-info)
(eglot-register-capability):
* lisp/progmodes/elisp-mode.el
(emacs-lisp-native-compile-and-load)
(elisp-eldoc-var-docstring-with-value):
* lisp/progmodes/erts-mode.el (erts-mode--goto-start-of-test):
* lisp/progmodes/flymake.el (flymake--update-eol-overlays)
(flymake-eldoc-function):
* lisp/progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom)
(gdb-frame-handler):
* lisp/progmodes/go-ts-mode.el (go-ts-mode-docstring)
(go-ts-mode--comment-on-previous-line-p)
(go-ts-mode--get-test-regexp-at-point)
(go-ts-mode-test-this-file):
* lisp/progmodes/grep.el (lgrep, rgrep-default-command)
(grep-file-at-point):
* lisp/progmodes/perl-mode.el (perl--end-of-format-p):
* lisp/progmodes/php-ts-mode.el
(php-ts-mode--anchor-prev-sibling, php-ts-mode--indent-defun):
* lisp/progmodes/project.el (project--other-place-command)
(project--find-default-from, project--transplant-file-name)
(project-prefixed-buffer-name, project--remove-from-project-list)
(project-prompt-project-name, project-remember-projects-under)
(project--switch-project-command)
(project-uniquify-dirname-transform, project-mode-line-format):
* lisp/progmodes/python.el
(python-font-lock-keywords-maximum-decoration)
(python--treesit-fontify-union-types)
(python-shell-get-process-name, python-shell-restart)
(python-shell-completion-at-point, python-ffap-module-path)
(python-util-comint-end-of-output-p, python--import-sources)
(python-add-import, python-remove-import, python-fix-imports):
* lisp/progmodes/xref.el (xref--add-log-current-defun):
* lisp/repeat.el (repeat-echo-message-string):
* lisp/saveplace.el (save-place-dired-hook):
* lisp/server.el (server-save-buffers-kill-terminal):
* lisp/shadowfile.el (shadow-make-fullname)
(shadow-contract-file-name, shadow-define-literal-group):
* lisp/shell.el (shell-highlight-undef-mode):
* lisp/simple.el (command-completion-using-modes-p)
(command-execute, file-user-uid, file-group-gid)
(first-completion, last-completion, switch-to-completions):
* lisp/startup.el (startup--load-user-init-file):
* lisp/tab-line.el (tab-line-tabs-buffer-group-by-project):
* lisp/tar-mode.el (tar-goto-file, tar-next-file-displayer):
* lisp/term/android-win.el (android-encode-select-string)
(gui-backend-set-selection):
* lisp/term/haiku-win.el (haiku-dnd-convert-string)
(haiku-select-encode-xstring, haiku-select-encode-utf-8-string):
* lisp/textmodes/emacs-news-mode.el (emacs-news--buttonize):
* lisp/textmodes/ispell.el (ispell-completion-at-point):
* lisp/textmodes/sgml-mode.el (sgml-validate)
(html-mode--complete-at-point):
* lisp/textmodes/tex-mode.el (tex-recenter-output-buffer)
(xref-backend-references):
* lisp/thingatpt.el (thing-at-point-file-at-point)
(thing-at-point-face-at-point):
* lisp/thread.el (thread-list--get-status):
* lisp/time.el (world-clock-copy-time-as-kill, world-clock):
* lisp/touch-screen.el (touch-screen-handle-touch):
* lisp/treesit.el (treesit-language-at, treesit-node-at)
(treesit-node-on, treesit-buffer-root-node)
(treesit-node-field-name, treesit-local-parsers-at)
(treesit-local-parsers-on, treesit--cleanup-local-range-overlays)
(treesit-font-lock-recompute-features)
(treesit-font-lock-fontify-region, treesit-transpose-sexps)
(treesit-add-log-current-defun, treesit-major-mode-setup)
(treesit--explorer-refresh, treesit-install-language-grammar):
* lisp/url/url.el (url-retrieve-synchronously):
* lisp/vc/smerge-mode.el (smerge-diff):
* lisp/vc/vc-dir.el (vc-dir):
* lisp/vc/vc-dispatcher.el (vc-do-async-command):
* lisp/vc/vc-git.el (vc-git-dir--branch-headers)
(vc-git-dir--stash-headers, vc-git--log-edit-summary-check)
(vc-git-stash-list):
* lisp/vc/vc.el (vc-responsible-backend, vc-buffer-sync-fileset)
(vc-clone):
* lisp/visual-wrap.el (visual-wrap--apply-to-line):
* lisp/wid-edit.el (widget-text)
(widget-editable-list-insert-before):
* lisp/window-tool-bar.el
(window-tool-bar--keymap-entry-to-string):
* lisp/window.el (display-buffer, display-buffer-full-frame)
(window-point-context-set, window-point-context-use)
(window-point-context-use-default-function):
* lisp/xdg.el (xdg-current-desktop):
* lisp/xwidget.el (xwidget-webkit-callback):
* lisp/yank-media.el (yank-media--get-selection)
(yank-media-types):
* test/lisp/comint-tests.el
(comint-tests/test-password-function):
* test/lisp/completion-preview-tests.el
(completion-preview-tests--capf):
* test/lisp/cus-edit-tests.el (with-cus-edit-test):
* test/lisp/erc/erc-scenarios-base-local-modules.el
(-phony-sblm-):
* test/lisp/erc/erc-scenarios-stamp.el
(erc-scenarios-stamp--on-post-modify):
* test/lisp/erc/erc-services-tests.el
(erc-services-tests--asp-parse-entry):
* test/lisp/erc/erc-tests.el (erc-modules--internal-property)
(erc--find-mode, erc-tests--update-modules):
* test/lisp/erc/resources/erc-d/erc-d-i.el
(erc-d-i--parse-message):
* test/lisp/erc/resources/erc-d/erc-d-t.el
(erc-d-t-kill-related-buffers, erc-d-t-with-cleanup):
* test/lisp/erc/resources/erc-d/erc-d-tests.el
(erc-d-i--parse-message--irc-parser-tests):
* test/lisp/erc/resources/erc-d/erc-d-u.el
(erc-d-u--read-exchange-slowly):
* test/lisp/erc/resources/erc-d/erc-d.el (erc-d--expire)
(erc-d--finalize-done, erc-d--command-handle-all):
* test/lisp/erc/resources/erc-scenarios-common.el
(erc-scenarios-common-with-cleanup):
* test/lisp/erc/resources/erc-tests-common.el
(erc-tests--common-display-message)
(erc-tests-common-create-subprocess):
* test/lisp/ibuffer-tests.el (ibuffer-test-Bug25058):
* test/lisp/international/mule-tests.el
(mule-cmds-tests--ucs-names-missing-names):
* test/lisp/progmodes/python-tests.el
(python-tests-get-shell-interpreter)
(python-tests--get-interpreter-info):
* test/lisp/progmodes/ruby-ts-mode-tests.el
(ruby-ts-resource-file):
* test/lisp/replace-tests.el (replace-tests-with-undo):
* test/src/emacs-tests.el (emacs-tests--seccomp-debug):
* test/src/process-tests.el (process-tests--emacs-command)
(process-tests--emacs-binary, process-tests--dump-file):
* test/src/treesit-tests.el (treesit--ert-test-defun-navigation):
Replace use of the now-obsolete if-let and when-let.
2024-10-24 08:50:07 +00:00
|
|
|
|
(when-let* ((new (cdr (assq level warning-level-aliases))))
|
2020-12-14 14:16:13 +00:00
|
|
|
|
(warn "Warning level `%s' is obsolete; use `%s' instead" level new)
|
|
|
|
|
(setq level new)))
|
2015-06-13 02:26:21 +00:00
|
|
|
|
(or (< (warning-numeric-level level)
|
|
|
|
|
(warning-numeric-level warning-minimum-log-level))
|
|
|
|
|
(warning-suppress-p type warning-suppress-log-types)
|
|
|
|
|
(let* ((typename (if (consp type) (car type) type))
|
|
|
|
|
(old (get-buffer buffer-name))
|
|
|
|
|
(buffer (or old (get-buffer-create buffer-name)))
|
|
|
|
|
(level-info (assq level warning-levels))
|
2018-05-26 01:37:17 +00:00
|
|
|
|
;; `newline' may be unbound during bootstrap.
|
|
|
|
|
(newline (if (fboundp 'newline) #'newline
|
|
|
|
|
(lambda () (insert "\n"))))
|
2015-06-13 02:26:21 +00:00
|
|
|
|
start end)
|
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
;; If we created the buffer, disable undo.
|
|
|
|
|
(unless old
|
2018-05-26 01:37:17 +00:00
|
|
|
|
(when (fboundp 'special-mode) ; Undefined during bootstrap.
|
|
|
|
|
(special-mode))
|
2015-06-13 02:26:21 +00:00
|
|
|
|
(setq buffer-read-only t)
|
|
|
|
|
(setq buffer-undo-list t))
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(when (and warning-series (symbolp warning-series))
|
|
|
|
|
(setq warning-series
|
|
|
|
|
(prog1 (point-marker)
|
|
|
|
|
(unless (eq warning-series t)
|
|
|
|
|
(funcall warning-series)))))
|
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
(unless (bolp)
|
2018-05-26 01:37:17 +00:00
|
|
|
|
(funcall newline))
|
2015-06-13 02:26:21 +00:00
|
|
|
|
(setq start (point))
|
2022-07-28 12:38:54 +00:00
|
|
|
|
;; Don't output the button when doing batch compilation
|
|
|
|
|
;; and similar.
|
|
|
|
|
(unless (or noninteractive (eq type 'bytecomp))
|
|
|
|
|
(insert (buttonize (icon-string 'warnings-suppress)
|
|
|
|
|
#'warnings-suppress type)
|
|
|
|
|
" "))
|
2015-06-13 02:26:21 +00:00
|
|
|
|
(if warning-prefix-function
|
|
|
|
|
(setq level-info (funcall warning-prefix-function
|
|
|
|
|
level level-info)))
|
|
|
|
|
(insert (format (nth 1 level-info)
|
|
|
|
|
(format warning-type-format typename))
|
|
|
|
|
message)
|
2018-05-26 01:37:17 +00:00
|
|
|
|
(funcall newline)
|
2021-12-06 01:23:02 +00:00
|
|
|
|
(when (and warning-fill-prefix
|
|
|
|
|
(not (string-search "\n" message))
|
|
|
|
|
(not noninteractive))
|
2015-06-13 02:26:21 +00:00
|
|
|
|
(let ((fill-prefix warning-fill-prefix)
|
2019-06-17 00:31:49 +00:00
|
|
|
|
(fill-column warning-fill-column))
|
2015-06-13 02:26:21 +00:00
|
|
|
|
(fill-region start (point))))
|
|
|
|
|
(setq end (point)))
|
|
|
|
|
(when (and (markerp warning-series)
|
|
|
|
|
(eq (marker-buffer warning-series) buffer))
|
|
|
|
|
(goto-char warning-series)))
|
|
|
|
|
(if (nth 2 level-info)
|
|
|
|
|
(funcall (nth 2 level-info)))
|
|
|
|
|
(cond (noninteractive
|
|
|
|
|
;; Noninteractively, take the text we inserted
|
|
|
|
|
;; in the warnings buffer and print it.
|
|
|
|
|
;; Do this unconditionally, since there is no way
|
|
|
|
|
;; to view logged messages unless we output them.
|
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(save-excursion
|
|
|
|
|
;; Don't include the final newline in the arg
|
|
|
|
|
;; to `message', because it adds a newline.
|
|
|
|
|
(goto-char end)
|
|
|
|
|
(if (bolp)
|
|
|
|
|
(forward-char -1))
|
|
|
|
|
(message "%s" (buffer-substring start (point))))))
|
|
|
|
|
((and (daemonp) (null after-init-time))
|
|
|
|
|
;; Warnings assigned during daemon initialization go into
|
|
|
|
|
;; the messages buffer.
|
|
|
|
|
(message "%s"
|
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char end)
|
|
|
|
|
(if (bolp)
|
|
|
|
|
(forward-char -1))
|
|
|
|
|
(buffer-substring start (point))))))
|
|
|
|
|
(t
|
|
|
|
|
;; Interactively, decide whether the warning merits
|
|
|
|
|
;; immediate display.
|
|
|
|
|
(or (< (warning-numeric-level level)
|
|
|
|
|
(warning-numeric-level warning-minimum-level))
|
|
|
|
|
(warning-suppress-p type warning-suppress-types)
|
2024-04-22 06:50:45 +00:00
|
|
|
|
(let ((window (display-buffer
|
|
|
|
|
buffer
|
|
|
|
|
(when warning-display-at-bottom
|
|
|
|
|
'(display-buffer--maybe-at-bottom
|
|
|
|
|
(window-height . (lambda (window)
|
|
|
|
|
(fit-window-to-buffer window 10)))
|
|
|
|
|
(category . warning))))))
|
2024-05-06 17:00:23 +00:00
|
|
|
|
(when (and window (markerp warning-series)
|
2015-06-13 02:26:21 +00:00
|
|
|
|
(eq (marker-buffer warning-series) buffer))
|
|
|
|
|
(set-window-start window warning-series))
|
2024-05-06 17:00:23 +00:00
|
|
|
|
(when (and window warning-display-at-bottom)
|
2024-04-22 06:50:45 +00:00
|
|
|
|
(with-selected-window window
|
|
|
|
|
(goto-char (point-max))
|
2024-05-02 06:53:06 +00:00
|
|
|
|
(forward-line -1)
|
2024-04-22 06:50:45 +00:00
|
|
|
|
(recenter -1)))
|
2015-06-13 02:26:21 +00:00
|
|
|
|
(sit-for 0)))))))))
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
2019-08-15 23:02:20 +00:00
|
|
|
|
;; Use \\<special-mode-map> so that help-enable-autoload can do its thing.
|
2014-02-09 00:20:12 +00:00
|
|
|
|
;; Any keymap that is defined will do.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
;;;###autoload
|
2003-08-06 01:09:33 +00:00
|
|
|
|
(defun lwarn (type level message &rest args)
|
2015-08-30 04:40:21 +00:00
|
|
|
|
"Display a warning message made from (format-message MESSAGE ARGS...).
|
2014-02-09 00:20:12 +00:00
|
|
|
|
\\<special-mode-map>
|
More-conservative ‘format’ quote restyling
Instead of restyling curved quotes for every call to ‘format’,
create a new function ‘format-message’ that does the restyling,
and using the new function instead of ‘format’ only in contexts
where this seems appropriate.
Problem reported by Dmitry Gutov and Andreas Schwab in:
http://lists.gnu.org/archive/html/emacs-devel/2015-08/msg00826.html
http://lists.gnu.org/archive/html/emacs-devel/2015-08/msg00827.html
* doc/lispref/commands.texi (Using Interactive):
* doc/lispref/control.texi (Signaling Errors, Signaling Errors):
* doc/lispref/display.texi (Displaying Messages, Progress):
* doc/lispref/elisp.texi:
* doc/lispref/help.texi (Keys in Documentation):
* doc/lispref/minibuf.texi (Minibuffer Misc):
* doc/lispref/strings.texi (Formatting Strings):
* etc/NEWS:
Document the changes.
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/apropos.el (apropos-library):
* lisp/calc/calc-ext.el (calc-record-message)
(calc-user-function-list):
* lisp/calc/calc-help.el (calc-describe-key, calc-full-help):
* lisp/calc/calc-lang.el (math-read-big-balance):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--add-diary-entry):
* lisp/cedet/mode-local.el (mode-local-print-binding)
(mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-completion-message):
* lisp/cedet/semantic/edit.el (semantic-parse-changes-failed):
* lisp/cedet/semantic/wisent/comp.el (wisent-log):
* lisp/cedet/srecode/insert.el (srecode-insert-show-error-report):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dframe.el (dframe-message):
* lisp/dired-aux.el (dired-query):
* lisp/emacs-lisp/byte-opt.el (byte-compile-log-lap-1):
* lisp/emacs-lisp/bytecomp.el (byte-compile-log)
(byte-compile-log-file, byte-compile-warn, byte-compile-form):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use)
(cconv-analyze-form):
* lisp/emacs-lisp/check-declare.el (check-declare-warn):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* lisp/emacs-lisp/cl-macs.el (cl-symbol-macrolet):
* lisp/emacs-lisp/edebug.el (edebug-format):
* lisp/emacs-lisp/eieio-core.el (eieio-oref):
* lisp/emacs-lisp/eldoc.el (eldoc-minibuffer-message)
(eldoc-message):
* lisp/emacs-lisp/elint.el (elint-file, elint-log):
* lisp/emacs-lisp/find-func.el (find-function-library):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring):
* lisp/emacs-lisp/package.el (package-compute-transaction)
(package-install-button-action, package-delete-button-action)
(package-menu--list-to-prompt):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emacs-lisp/warnings.el (lwarn, warn):
* lisp/emulation/viper-cmd.el:
(viper-toggle-parse-sexp-ignore-comments)
(viper-kill-buffer, viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/facemenu.el (facemenu-add-new-face):
* lisp/faces.el (face-documentation, read-face-name)
(face-read-string, read-face-font, describe-face):
* lisp/files.el (find-alternate-file, hack-local-variables)
(hack-one-local-variable--obsolete, write-file)
(basic-save-buffer, delete-directory):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--obsolete)
(help-fns--interactive-only, describe-function-1)
(describe-variable):
* lisp/help.el (describe-mode):
* lisp/info-xref.el (info-xref-output):
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
* lisp/international/kkc.el (kkc-error):
* lisp/international/mule-cmds.el:
(select-safe-coding-system-interactively)
(select-safe-coding-system, describe-input-method):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/international/quail.el (quail-error):
* lisp/minibuffer.el (minibuffer-message):
* lisp/mpc.el (mpc--debug):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-message):
* lisp/net/gnutls.el (gnutls-message-maybe):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/nsm.el (nsm-query-user):
* lisp/net/rlogin.el (rlogin):
* lisp/net/soap-client.el (soap-warning):
* lisp/net/tramp.el (tramp-debug-message):
* lisp/nxml/nxml-outln.el (nxml-report-outline-error):
* lisp/nxml/nxml-parse.el (nxml-parse-error):
* lisp/nxml/rng-cmpct.el (rng-c-error):
* lisp/nxml/rng-match.el (rng-compile-error):
* lisp/nxml/rng-uri.el (rng-uri-error):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/org/org-ctags.el:
(org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/proced.el (proced-log):
* lisp/progmodes/ebnf2ps.el (ebnf-log):
* lisp/progmodes/flymake.el (flymake-log):
* lisp/progmodes/vhdl-mode.el (vhdl-warning-when-idle):
* lisp/replace.el (occur-1):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, define-alternatives):
* lisp/startup.el (command-line):
* lisp/subr.el (error, user-error, add-to-list):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* src/callint.c (Fcall_interactively):
* src/editfns.c (Fmessage, Fmessage_box):
Restyle the quotes of format strings intended for use as a
diagnostic, when restyling seems appropriate.
* lisp/subr.el (format-message): New function.
* src/doc.c (Finternal__text_restyle): New function.
(syms_of_doc): Define it.
2015-08-24 05:38:02 +00:00
|
|
|
|
Aside from generating the message with `format-message',
|
2003-05-30 23:31:15 +00:00
|
|
|
|
this is equivalent to `display-warning'.
|
|
|
|
|
|
2006-05-01 20:16:40 +00:00
|
|
|
|
TYPE is the warning type: either a custom group name (a symbol),
|
2003-08-06 01:09:33 +00:00
|
|
|
|
or a list of symbols whose first element is a custom group name.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
\(The rest of the symbols represent subcategories and
|
|
|
|
|
can be whatever you like.)
|
|
|
|
|
|
2005-06-17 11:49:17 +00:00
|
|
|
|
LEVEL should be either :debug, :warning, :error, or :emergency
|
|
|
|
|
\(but see `warning-minimum-level' and `warning-minimum-log-level').
|
|
|
|
|
|
2003-05-30 23:31:15 +00:00
|
|
|
|
:emergency -- a problem that will seriously impair Emacs operation soon
|
|
|
|
|
if you do not attend to it promptly.
|
|
|
|
|
:error -- invalid data or circumstances.
|
2005-06-17 11:49:17 +00:00
|
|
|
|
:warning -- suspicious data or circumstances.
|
|
|
|
|
:debug -- info for debugging only."
|
More-conservative ‘format’ quote restyling
Instead of restyling curved quotes for every call to ‘format’,
create a new function ‘format-message’ that does the restyling,
and using the new function instead of ‘format’ only in contexts
where this seems appropriate.
Problem reported by Dmitry Gutov and Andreas Schwab in:
http://lists.gnu.org/archive/html/emacs-devel/2015-08/msg00826.html
http://lists.gnu.org/archive/html/emacs-devel/2015-08/msg00827.html
* doc/lispref/commands.texi (Using Interactive):
* doc/lispref/control.texi (Signaling Errors, Signaling Errors):
* doc/lispref/display.texi (Displaying Messages, Progress):
* doc/lispref/elisp.texi:
* doc/lispref/help.texi (Keys in Documentation):
* doc/lispref/minibuf.texi (Minibuffer Misc):
* doc/lispref/strings.texi (Formatting Strings):
* etc/NEWS:
Document the changes.
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/apropos.el (apropos-library):
* lisp/calc/calc-ext.el (calc-record-message)
(calc-user-function-list):
* lisp/calc/calc-help.el (calc-describe-key, calc-full-help):
* lisp/calc/calc-lang.el (math-read-big-balance):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--add-diary-entry):
* lisp/cedet/mode-local.el (mode-local-print-binding)
(mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-completion-message):
* lisp/cedet/semantic/edit.el (semantic-parse-changes-failed):
* lisp/cedet/semantic/wisent/comp.el (wisent-log):
* lisp/cedet/srecode/insert.el (srecode-insert-show-error-report):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dframe.el (dframe-message):
* lisp/dired-aux.el (dired-query):
* lisp/emacs-lisp/byte-opt.el (byte-compile-log-lap-1):
* lisp/emacs-lisp/bytecomp.el (byte-compile-log)
(byte-compile-log-file, byte-compile-warn, byte-compile-form):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use)
(cconv-analyze-form):
* lisp/emacs-lisp/check-declare.el (check-declare-warn):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* lisp/emacs-lisp/cl-macs.el (cl-symbol-macrolet):
* lisp/emacs-lisp/edebug.el (edebug-format):
* lisp/emacs-lisp/eieio-core.el (eieio-oref):
* lisp/emacs-lisp/eldoc.el (eldoc-minibuffer-message)
(eldoc-message):
* lisp/emacs-lisp/elint.el (elint-file, elint-log):
* lisp/emacs-lisp/find-func.el (find-function-library):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring):
* lisp/emacs-lisp/package.el (package-compute-transaction)
(package-install-button-action, package-delete-button-action)
(package-menu--list-to-prompt):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emacs-lisp/warnings.el (lwarn, warn):
* lisp/emulation/viper-cmd.el:
(viper-toggle-parse-sexp-ignore-comments)
(viper-kill-buffer, viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/facemenu.el (facemenu-add-new-face):
* lisp/faces.el (face-documentation, read-face-name)
(face-read-string, read-face-font, describe-face):
* lisp/files.el (find-alternate-file, hack-local-variables)
(hack-one-local-variable--obsolete, write-file)
(basic-save-buffer, delete-directory):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--obsolete)
(help-fns--interactive-only, describe-function-1)
(describe-variable):
* lisp/help.el (describe-mode):
* lisp/info-xref.el (info-xref-output):
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
* lisp/international/kkc.el (kkc-error):
* lisp/international/mule-cmds.el:
(select-safe-coding-system-interactively)
(select-safe-coding-system, describe-input-method):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/international/quail.el (quail-error):
* lisp/minibuffer.el (minibuffer-message):
* lisp/mpc.el (mpc--debug):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-message):
* lisp/net/gnutls.el (gnutls-message-maybe):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/nsm.el (nsm-query-user):
* lisp/net/rlogin.el (rlogin):
* lisp/net/soap-client.el (soap-warning):
* lisp/net/tramp.el (tramp-debug-message):
* lisp/nxml/nxml-outln.el (nxml-report-outline-error):
* lisp/nxml/nxml-parse.el (nxml-parse-error):
* lisp/nxml/rng-cmpct.el (rng-c-error):
* lisp/nxml/rng-match.el (rng-compile-error):
* lisp/nxml/rng-uri.el (rng-uri-error):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/org/org-ctags.el:
(org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/proced.el (proced-log):
* lisp/progmodes/ebnf2ps.el (ebnf-log):
* lisp/progmodes/flymake.el (flymake-log):
* lisp/progmodes/vhdl-mode.el (vhdl-warning-when-idle):
* lisp/replace.el (occur-1):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, define-alternatives):
* lisp/startup.el (command-line):
* lisp/subr.el (error, user-error, add-to-list):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* src/callint.c (Fcall_interactively):
* src/editfns.c (Fmessage, Fmessage_box):
Restyle the quotes of format strings intended for use as a
diagnostic, when restyling seems appropriate.
* lisp/subr.el (format-message): New function.
* src/doc.c (Finternal__text_restyle): New function.
(syms_of_doc): Define it.
2015-08-24 05:38:02 +00:00
|
|
|
|
(display-warning type (apply #'format-message message args) level))
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun warn (message &rest args)
|
2015-08-30 04:40:21 +00:00
|
|
|
|
"Display a warning message made from (format-message MESSAGE ARGS...).
|
More-conservative ‘format’ quote restyling
Instead of restyling curved quotes for every call to ‘format’,
create a new function ‘format-message’ that does the restyling,
and using the new function instead of ‘format’ only in contexts
where this seems appropriate.
Problem reported by Dmitry Gutov and Andreas Schwab in:
http://lists.gnu.org/archive/html/emacs-devel/2015-08/msg00826.html
http://lists.gnu.org/archive/html/emacs-devel/2015-08/msg00827.html
* doc/lispref/commands.texi (Using Interactive):
* doc/lispref/control.texi (Signaling Errors, Signaling Errors):
* doc/lispref/display.texi (Displaying Messages, Progress):
* doc/lispref/elisp.texi:
* doc/lispref/help.texi (Keys in Documentation):
* doc/lispref/minibuf.texi (Minibuffer Misc):
* doc/lispref/strings.texi (Formatting Strings):
* etc/NEWS:
Document the changes.
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/apropos.el (apropos-library):
* lisp/calc/calc-ext.el (calc-record-message)
(calc-user-function-list):
* lisp/calc/calc-help.el (calc-describe-key, calc-full-help):
* lisp/calc/calc-lang.el (math-read-big-balance):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--add-diary-entry):
* lisp/cedet/mode-local.el (mode-local-print-binding)
(mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-completion-message):
* lisp/cedet/semantic/edit.el (semantic-parse-changes-failed):
* lisp/cedet/semantic/wisent/comp.el (wisent-log):
* lisp/cedet/srecode/insert.el (srecode-insert-show-error-report):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dframe.el (dframe-message):
* lisp/dired-aux.el (dired-query):
* lisp/emacs-lisp/byte-opt.el (byte-compile-log-lap-1):
* lisp/emacs-lisp/bytecomp.el (byte-compile-log)
(byte-compile-log-file, byte-compile-warn, byte-compile-form):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use)
(cconv-analyze-form):
* lisp/emacs-lisp/check-declare.el (check-declare-warn):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* lisp/emacs-lisp/cl-macs.el (cl-symbol-macrolet):
* lisp/emacs-lisp/edebug.el (edebug-format):
* lisp/emacs-lisp/eieio-core.el (eieio-oref):
* lisp/emacs-lisp/eldoc.el (eldoc-minibuffer-message)
(eldoc-message):
* lisp/emacs-lisp/elint.el (elint-file, elint-log):
* lisp/emacs-lisp/find-func.el (find-function-library):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring):
* lisp/emacs-lisp/package.el (package-compute-transaction)
(package-install-button-action, package-delete-button-action)
(package-menu--list-to-prompt):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emacs-lisp/warnings.el (lwarn, warn):
* lisp/emulation/viper-cmd.el:
(viper-toggle-parse-sexp-ignore-comments)
(viper-kill-buffer, viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/facemenu.el (facemenu-add-new-face):
* lisp/faces.el (face-documentation, read-face-name)
(face-read-string, read-face-font, describe-face):
* lisp/files.el (find-alternate-file, hack-local-variables)
(hack-one-local-variable--obsolete, write-file)
(basic-save-buffer, delete-directory):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--obsolete)
(help-fns--interactive-only, describe-function-1)
(describe-variable):
* lisp/help.el (describe-mode):
* lisp/info-xref.el (info-xref-output):
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
* lisp/international/kkc.el (kkc-error):
* lisp/international/mule-cmds.el:
(select-safe-coding-system-interactively)
(select-safe-coding-system, describe-input-method):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/international/quail.el (quail-error):
* lisp/minibuffer.el (minibuffer-message):
* lisp/mpc.el (mpc--debug):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-message):
* lisp/net/gnutls.el (gnutls-message-maybe):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/nsm.el (nsm-query-user):
* lisp/net/rlogin.el (rlogin):
* lisp/net/soap-client.el (soap-warning):
* lisp/net/tramp.el (tramp-debug-message):
* lisp/nxml/nxml-outln.el (nxml-report-outline-error):
* lisp/nxml/nxml-parse.el (nxml-parse-error):
* lisp/nxml/rng-cmpct.el (rng-c-error):
* lisp/nxml/rng-match.el (rng-compile-error):
* lisp/nxml/rng-uri.el (rng-uri-error):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/org/org-ctags.el:
(org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/proced.el (proced-log):
* lisp/progmodes/ebnf2ps.el (ebnf-log):
* lisp/progmodes/flymake.el (flymake-log):
* lisp/progmodes/vhdl-mode.el (vhdl-warning-when-idle):
* lisp/replace.el (occur-1):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, define-alternatives):
* lisp/startup.el (command-line):
* lisp/subr.el (error, user-error, add-to-list):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* src/callint.c (Fcall_interactively):
* src/editfns.c (Fmessage, Fmessage_box):
Restyle the quotes of format strings intended for use as a
diagnostic, when restyling seems appropriate.
* lisp/subr.el (format-message): New function.
* src/doc.c (Finternal__text_restyle): New function.
(syms_of_doc): Define it.
2015-08-24 05:38:02 +00:00
|
|
|
|
Aside from generating the message with `format-message',
|
2003-05-30 23:31:15 +00:00
|
|
|
|
this is equivalent to `display-warning', using
|
2003-08-06 01:09:33 +00:00
|
|
|
|
`emacs' as the type and `:warning' as the level."
|
More-conservative ‘format’ quote restyling
Instead of restyling curved quotes for every call to ‘format’,
create a new function ‘format-message’ that does the restyling,
and using the new function instead of ‘format’ only in contexts
where this seems appropriate.
Problem reported by Dmitry Gutov and Andreas Schwab in:
http://lists.gnu.org/archive/html/emacs-devel/2015-08/msg00826.html
http://lists.gnu.org/archive/html/emacs-devel/2015-08/msg00827.html
* doc/lispref/commands.texi (Using Interactive):
* doc/lispref/control.texi (Signaling Errors, Signaling Errors):
* doc/lispref/display.texi (Displaying Messages, Progress):
* doc/lispref/elisp.texi:
* doc/lispref/help.texi (Keys in Documentation):
* doc/lispref/minibuf.texi (Minibuffer Misc):
* doc/lispref/strings.texi (Formatting Strings):
* etc/NEWS:
Document the changes.
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/apropos.el (apropos-library):
* lisp/calc/calc-ext.el (calc-record-message)
(calc-user-function-list):
* lisp/calc/calc-help.el (calc-describe-key, calc-full-help):
* lisp/calc/calc-lang.el (math-read-big-balance):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--add-diary-entry):
* lisp/cedet/mode-local.el (mode-local-print-binding)
(mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-completion-message):
* lisp/cedet/semantic/edit.el (semantic-parse-changes-failed):
* lisp/cedet/semantic/wisent/comp.el (wisent-log):
* lisp/cedet/srecode/insert.el (srecode-insert-show-error-report):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dframe.el (dframe-message):
* lisp/dired-aux.el (dired-query):
* lisp/emacs-lisp/byte-opt.el (byte-compile-log-lap-1):
* lisp/emacs-lisp/bytecomp.el (byte-compile-log)
(byte-compile-log-file, byte-compile-warn, byte-compile-form):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use)
(cconv-analyze-form):
* lisp/emacs-lisp/check-declare.el (check-declare-warn):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* lisp/emacs-lisp/cl-macs.el (cl-symbol-macrolet):
* lisp/emacs-lisp/edebug.el (edebug-format):
* lisp/emacs-lisp/eieio-core.el (eieio-oref):
* lisp/emacs-lisp/eldoc.el (eldoc-minibuffer-message)
(eldoc-message):
* lisp/emacs-lisp/elint.el (elint-file, elint-log):
* lisp/emacs-lisp/find-func.el (find-function-library):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring):
* lisp/emacs-lisp/package.el (package-compute-transaction)
(package-install-button-action, package-delete-button-action)
(package-menu--list-to-prompt):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emacs-lisp/warnings.el (lwarn, warn):
* lisp/emulation/viper-cmd.el:
(viper-toggle-parse-sexp-ignore-comments)
(viper-kill-buffer, viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/facemenu.el (facemenu-add-new-face):
* lisp/faces.el (face-documentation, read-face-name)
(face-read-string, read-face-font, describe-face):
* lisp/files.el (find-alternate-file, hack-local-variables)
(hack-one-local-variable--obsolete, write-file)
(basic-save-buffer, delete-directory):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--obsolete)
(help-fns--interactive-only, describe-function-1)
(describe-variable):
* lisp/help.el (describe-mode):
* lisp/info-xref.el (info-xref-output):
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
* lisp/international/kkc.el (kkc-error):
* lisp/international/mule-cmds.el:
(select-safe-coding-system-interactively)
(select-safe-coding-system, describe-input-method):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/international/quail.el (quail-error):
* lisp/minibuffer.el (minibuffer-message):
* lisp/mpc.el (mpc--debug):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-message):
* lisp/net/gnutls.el (gnutls-message-maybe):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/nsm.el (nsm-query-user):
* lisp/net/rlogin.el (rlogin):
* lisp/net/soap-client.el (soap-warning):
* lisp/net/tramp.el (tramp-debug-message):
* lisp/nxml/nxml-outln.el (nxml-report-outline-error):
* lisp/nxml/nxml-parse.el (nxml-parse-error):
* lisp/nxml/rng-cmpct.el (rng-c-error):
* lisp/nxml/rng-match.el (rng-compile-error):
* lisp/nxml/rng-uri.el (rng-uri-error):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/org/org-ctags.el:
(org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/proced.el (proced-log):
* lisp/progmodes/ebnf2ps.el (ebnf-log):
* lisp/progmodes/flymake.el (flymake-log):
* lisp/progmodes/vhdl-mode.el (vhdl-warning-when-idle):
* lisp/replace.el (occur-1):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, define-alternatives):
* lisp/startup.el (command-line):
* lisp/subr.el (error, user-error, add-to-list):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* src/callint.c (Fcall_interactively):
* src/editfns.c (Fmessage, Fmessage_box):
Restyle the quotes of format strings intended for use as a
diagnostic, when restyling seems appropriate.
* lisp/subr.el (format-message): New function.
* src/doc.c (Finternal__text_restyle): New function.
(syms_of_doc): Define it.
2015-08-24 05:38:02 +00:00
|
|
|
|
(display-warning 'emacs (apply #'format-message message args)))
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
|
|
(provide 'warnings)
|
|
|
|
|
|
|
|
|
|
;;; warnings.el ends here
|