* lisp/emacs-lisp/crm.el (crm-default-separator): Move to avoid
compilation warning.
;;; 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.")
;(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