diff options
author | Basil L. Contovounesios <contovob@tcd.ie> | 2020-04-30 11:01:13 +0100 |
---|---|---|
committer | Basil L. Contovounesios <contovob@tcd.ie> | 2020-04-30 11:01:13 +0100 |
commit | 44d824e7f05695751a3cbe7b64dc7bab6afa365c (patch) | |
tree | 75f23689ebadb9cf3838d68bc779a813ba4e3cdc /lisp/version.el | |
parent | 72570e0fc39630b03eb2e7fb1245aeaaa5a3c448 (diff) | |
download | emacs-44d824e7f05695751a3cbe7b64dc7bab6afa365c.tar.gz emacs-44d824e7f05695751a3cbe7b64dc7bab6afa365c.tar.bz2 emacs-44d824e7f05695751a3cbe7b64dc7bab6afa365c.zip |
; Silence byte-compiler warning in version.el
* lisp/version.el (emacs-repository-get-version): Prefix unused
argument with underscore.
Diffstat (limited to 'lisp/version.el')
-rw-r--r-- | lisp/version.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/version.el b/lisp/version.el index 046b4a2ded5..24da21c731c 100644 --- a/lisp/version.el +++ b/lisp/version.el @@ -123,7 +123,7 @@ or if we could not determine the revision.") (looking-at "[[:xdigit:]]\\{40\\}")) (match-string 0))))) -(defun emacs-repository-get-version (&optional dir external) +(defun emacs-repository-get-version (&optional dir _external) "Try to return as a string the repository revision of the Emacs sources. The format of the returned string is dependent on the VCS in use. Value is nil if the sources do not seem to be under version |