diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2021-09-27 16:00:32 +0200 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2021-09-27 16:00:32 +0200 |
commit | 79b5d66bd66458f6e669adee2698e9fd18c4bc3a (patch) | |
tree | 529b6b9101b82996a0b1d071962053bb95e6b07d | |
parent | 75f2739e1ae8b193e495f0ec611b408de7204719 (diff) | |
download | emacs-79b5d66bd66458f6e669adee2698e9fd18c4bc3a.tar.gz emacs-79b5d66bd66458f6e669adee2698e9fd18c4bc3a.tar.bz2 emacs-79b5d66bd66458f6e669adee2698e9fd18c4bc3a.zip |
* lisp/progmodes/flymake.el (flymake-menu): Don't use obsolete name.
-rw-r--r-- | lisp/progmodes/flymake.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index 5a1455aa7b1..bcb43c1faf1 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el @@ -1334,7 +1334,7 @@ default) no filter is applied." [ "Go to next problem" flymake-goto-next-error t ] [ "Go to previous problem" flymake-goto-prev-error t ] [ "Check now" flymake-start t ] - [ "List all problems" flymake-show-diagnostics-buffer t ] + [ "List all problems" flymake-show-buffer-diagnostics t ] "--" [ "Go to log buffer" flymake-switch-to-log-buffer t ] [ "Turn off Flymake" flymake-mode t ])) @@ -1599,7 +1599,7 @@ buffer." ;; been set to a valid buffer. This could happen when this function ;; is called too early. For example 'global-display-line-numbers-mode' ;; calls us from its mode hook, when the diagnostic buffer has just - ;; been created by 'flymake-show-diagnostics-buffer', but is not yet + ;; been created by 'flymake-show-buffer-diagnostics', but is not yet ;; set up properly (Bug#40529). (when (bufferp flymake--diagnostics-buffer-source) (with-current-buffer flymake--diagnostics-buffer-source |