Compare commits

...

2 Commits
main ... 1.0.1

Author SHA1 Message Date
Jessie A Hildebrandt
02c6c457f0 Increment patch version number 2019-04-16 08:50:09 -04:00
Jessie A Hildebrandt
3a54ea37b9 Add declarations to quiet byte-compiler warnings 2019-04-16 08:32:30 -04:00
2 changed files with 19 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# mood-line # mood-line
### Version 1.0.0 ### Version 1.0.1
## About ## About

View File

@ -3,7 +3,7 @@
;; Author: Jessie Hildebrandt <jessieh.net> ;; Author: Jessie Hildebrandt <jessieh.net>
;; Homepage: https://gitlab.com/jessieh/mood-line ;; Homepage: https://gitlab.com/jessieh/mood-line
;; Keywords: mode-line faces ;; Keywords: mode-line faces
;; Version: 1.0.0 ;; Version: 1.0.1
;; Package-Requires: ((emacs "24.4")) ;; Package-Requires: ((emacs "24.4"))
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.
@ -42,6 +42,23 @@
;;; Code: ;;; Code:
;;
;; Variable declarations
;;
(defvar mood-line--current-window)
(defvar flycheck-current-errors)
(defvar anzu--state)
(defvar multiple-cursors-mode)
;;
;; Function prototypes
;;
(declare-function flycheck-count-errors "flycheck" (errors))
(declare-function anzu--update-mode-line "anzu" ())
(declare-function mc/num-cursors "multiple-cursors" ())
;; ;;
;; Config ;; Config
;; ;;