diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2013-08-11 02:07:48 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2013-08-11 02:07:48 +0200 |
commit | 9a4ebc748797acc8af74f561367aa1b34ca02d2e (patch) | |
tree | 47ff4c1682c4faeb34c44b7a881ddfa0e0a8926f /lisp/view.el | |
parent | b41bfdd0566140601f0adb65b0052246c1294bb6 (diff) | |
download | emacs-9a4ebc748797acc8af74f561367aa1b34ca02d2e.tar.gz |
lisp/*.el: More lexical-binding warnings' cleanups.
* tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
(tutorial--detailed-help): Remove unused local variables.
(tutorial--save-tutorial-to): Use ignore-errors.
(help-with-tutorial): Use looking-at-p.
* view.el (view-buffer-other-window, view-buffer-other-frame):
Mark unused arguments.
* woman.el (woman-parse-colon-path, woman-parse-colon-path)
(woman-select-symbol-fonts, woman, woman-find-file)
(woman-insert-file-contents, woman-non-underline-faces):
Use string-match-p.
(woman1-unquote): Move declaration.
* xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
(xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
argument. Remove unused local variable.
(xml-parse-elem-type): Use string-match-p.
(xml-substitute-numeric-entities): Use ignore-errors.
Diffstat (limited to 'lisp/view.el')
-rw-r--r-- | lisp/view.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/view.el b/lisp/view.el index f9326399a26..333a9883d14 100644 --- a/lisp/view.el +++ b/lisp/view.el @@ -322,7 +322,7 @@ own View-like bindings." (view-mode-enter nil exit-action))) ;;;###autoload -(defun view-buffer-other-window (buffer &optional not-return exit-action) +(defun view-buffer-other-window (buffer &optional _not-return exit-action) "View BUFFER in View mode in another window. Emacs commands editing the buffer contents are not available; instead, a special set of commands (mostly letters and @@ -349,7 +349,7 @@ own View-like bindings." (view-mode-enter nil exit-action))) ;;;###autoload -(defun view-buffer-other-frame (buffer &optional not-return exit-action) +(defun view-buffer-other-frame (buffer &optional _not-return exit-action) "View BUFFER in View mode in another frame. Emacs commands editing the buffer contents are not available; instead, a special set of commands (mostly letters and |