]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix crm.el compilation warning
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 11 Jul 2022 11:34:35 +0000 (13:34 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 11 Jul 2022 11:34:35 +0000 (13:34 +0200)
* lisp/emacs-lisp/crm.el (crm-default-separator): Move to avoid
compilation warning.

lisp/emacs-lisp/crm.el

index 9c49e095783b4ed792947ef5e74700027e778726..6d4b29b552c71d298d4e509bdece494c885fc025 100644 (file)
@@ -77,6 +77,8 @@
 
 ;;; Code:
 
+(define-obsolete-variable-alias 'crm-default-separator 'crm-separator "29.1")
+
 (defvar crm-separator "[ \t]*,[ \t]*"
   "Separator regexp used for separating strings in `completing-read-multiple'.
 It should be a regexp that does not match the list of completion candidates.")
@@ -294,8 +296,6 @@ with empty strings removed."
 ;(completing-read my-prompt my-table nil t)
 ;(completing-read my-prompt my-table nil "match")
 
-(define-obsolete-variable-alias 'crm-default-separator 'crm-separator "29.1")
-
 (provide 'crm)
 
 ;;; crm.el ends here