emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/denote f4f1fa3c48 041/355: Declare variables with defco


From: ELPA Syncer
Subject: [elpa] externals/denote f4f1fa3c48 041/355: Declare variables with defconst
Date: Sun, 26 Jun 2022 23:57:58 -0400 (EDT)

branch: externals/denote
commit f4f1fa3c488dab0e1f72aba27e3f12540c6ba4c9
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>

    Declare variables with defconst
---
 denote-link.el | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/denote-link.el b/denote-link.el
index 8273da23cd..ad0ae0639f 100644
--- a/denote-link.el
+++ b/denote-link.el
@@ -53,20 +53,19 @@ Both are supplied by `denote-link'."
   (cons (match-string-no-properties 1)
         (match-string-no-properties 2)))
 
-(defvar denote-link--title-regexp "^\\(#\\+title:\\)[\s\t]+\\(.*\\)"
+(defconst denote-link--title-regexp "^\\(#\\+title:\\)[\s\t]+\\(.*\\)"
   "Regular expression for title key and value.")
 
-(defvar denote-link--filename-regexp "^\\(#\\+filename:\\)[\s\t]+\\(.*\\)"
+(defconst denote-link--filename-regexp "^\\(#\\+filename:\\)[\s\t]+\\(.*\\)"
   "Regular expression for filename key and value.")
 
-(defvar denote-link--identifier-regexp "^\\(#\\+identifier:\\)[\s\t]+\\(.*\\)"
+(defconst denote-link--identifier-regexp 
"^\\(#\\+identifier:\\)[\s\t]+\\(.*\\)"
   "Regular expression for filename key and value.")
 
-;; TODO 2022-06-05: Maybe this should be a defcustom?
-(defvar denote-link--link-format "[[denote:%s][%s (%s)]]"
+(defconst denote-link--link-format "[[denote:%s][%s (%s)]]"
   "Format of Org link to note.")
 
-(defvar denote-link--backlink-format "[[denote:%s][backlink: %s (%s)]]"
+(defconst denote-link--backlink-format "[[denote:%s][backlink: %s (%s)]]"
   "Format of Org link to note.")
 
 (defun denote-link--retrieve-value (note regexp)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]