]> git.eshelyaron.com Git - emacs.git/commitdiff
Declare two w32 functions to avoid byte compilation warnings
authorLars Ingebrigtsen <larsi@gnus.org>
Fri, 17 May 2019 03:18:12 +0000 (05:18 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 17 May 2019 03:18:12 +0000 (05:18 +0200)
* lisp/w32-fns.el (w32-version, w32-read-registry): Declare these
functions to avoid byte compilation warnings.  The functions
should be loaded when `w32--os-description' is called, as far as I
can tell.

lisp/w32-fns.el

index 8762fe772b8301b6312539bc203c3c336e1355ef..2b6464ab98624c065ac72c0f6ecd27591ec45558 100644 (file)
@@ -305,7 +305,10 @@ names."
 
 ;;;; System name and version for emacsbug.el
 
-(defun w32--os-description ()
+(declare-function w32-version "w32-win" ())
+(declare-function w32-read-registry "w32fns" (root key name))
+
+(defun w32--os-descriptiono ()
   "Return a string describing the underlying OS and its version."
   (let* ((w32ver (car (w32-version)))
          (w9x-p (< w32ver 5))