summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2022-07-11 13:34:35 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-07-11 13:34:35 +0200
commit2f823ffd28d064fc8c1a3947e74c512b577863c6 (patch)
treeac5e8458c3143a408da3e8c1008c2f67c9aaf9fb
parent061de95d5951642d19cc9445ddbe063e1e2019bb (diff)
downloademacs-2f823ffd28d064fc8c1a3947e74c512b577863c6.tar.gz
Fix crm.el compilation warning
* lisp/emacs-lisp/crm.el (crm-default-separator): Move to avoid compilation warning.
-rw-r--r--lisp/emacs-lisp/crm.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/crm.el b/lisp/emacs-lisp/crm.el
index 9c49e095783..6d4b29b552c 100644
--- a/lisp/emacs-lisp/crm.el
+++ b/lisp/emacs-lisp/crm.el
@@ -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