fix: correct version string in obsoletion calls

This commit is contained in:
Henrik Lissner 2024-08-26 18:07:47 -04:00
parent 4f5f9d6065
commit 6077b6f0d8
No known key found for this signature in database
GPG key ID: B60957CA074D39A3
5 changed files with 8 additions and 8 deletions

View file

@ -13,9 +13,9 @@
;; ;;
;;; Commands ;;; Commands
(defcli-obsolete! ((build b)) (sync "--rebuild") "v3.0.0") (defcli-obsolete! ((build b)) (sync "--rebuild") "3.0.0")
(defcli-obsolete! ((purge p)) (gc) "v3.0.0") (defcli-obsolete! ((purge p)) (gc) "3.0.0")
;; TODO Rename to "doom gc" and move to its own file ;; TODO Rename to "doom gc" and move to its own file
(defcli! (gc) (defcli! (gc)

View file

@ -89,7 +89,7 @@ list is returned as-is."
;; ;;
;;; Public library ;;; Public library
(define-obsolete-function-alias 'doom-enlist 'ensure-list "v3.0.0") (define-obsolete-function-alias 'doom-enlist 'ensure-list "3.0.0")
(defun doom-unquote (exp) (defun doom-unquote (exp)
"Return EXP unquoted." "Return EXP unquoted."

View file

@ -12,7 +12,7 @@ Emacs.")
(defvar doom-projectile-cache-purge-non-projects nil (defvar doom-projectile-cache-purge-non-projects nil
"If non-nil, non-projects are purged from the cache on `kill-emacs-hook'.") "If non-nil, non-projects are purged from the cache on `kill-emacs-hook'.")
(define-obsolete-variable-alias 'doom-projectile-fd-binary 'doom-fd-executable "v3.0.0") (define-obsolete-variable-alias 'doom-projectile-fd-binary 'doom-fd-executable "3.0.0")
(defvar doom-fd-executable (cl-find-if #'executable-find (list "fdfind" "fd")) (defvar doom-fd-executable (cl-find-if #'executable-find (list "fdfind" "fd"))
"The filename of the fd executable. "The filename of the fd executable.

View file

@ -31,8 +31,8 @@ playback.")
(format (format "%%%ds | %%s" +irc-left-padding) (format (format "%%%ds | %%s" +irc-left-padding)
(concat "*** " left) right)) (concat "*** " left) right))
(define-obsolete-variable-alias '+irc-notifications-watch-strings 'circe-notifications-watch-strings "v3.0.0") (define-obsolete-variable-alias '+irc-notifications-watch-strings 'circe-notifications-watch-strings "3.0.0")
(define-obsolete-variable-alias '+irc-time-stamp-format 'lui-time-stamp-format "v3.0.0") (define-obsolete-variable-alias '+irc-time-stamp-format 'lui-time-stamp-format "3.0.0")
;; ;;

View file

@ -63,11 +63,11 @@ font.")
(defvar +ligatures-prog-mode-list nil (defvar +ligatures-prog-mode-list nil
"A list of ligatures to enable in all `prog-mode' buffers.") "A list of ligatures to enable in all `prog-mode' buffers.")
(make-obsolete-variable '+ligatures-prog-mode-list "Use `+ligatures-alist' instead" "v3.0.0") (make-obsolete-variable '+ligatures-prog-mode-list "Use `+ligatures-alist' instead" "3.0.0")
(defvar +ligatures-all-modes-list nil (defvar +ligatures-all-modes-list nil
"A list of ligatures to enable in all buffers.") "A list of ligatures to enable in all buffers.")
(make-obsolete-variable '+ligatures-all-modes-list "Use `+ligatures-alist' instead" "v3.0.0") (make-obsolete-variable '+ligatures-all-modes-list "Use `+ligatures-alist' instead" "3.0.0")
(defvar +ligatures-extra-alist '((t)) (defvar +ligatures-extra-alist '((t))
"A map of major modes to symbol lists (for `prettify-symbols-alist').") "A map of major modes to symbol lists (for `prettify-symbols-alist').")