@@ -802,12 +802,12 @@ Called by `imenu--generic-function'."
802802(eval-and-compile
803803 (defconst clojure--sym-forbidden-rest-chars " ][\" ;@\\ ^`~\(\)\{\} \\ ,\s\t\n\r "
804804 " A list of chars that a Clojure symbol cannot contain.
805- See definition of ' macros': URL `http://git.io/vRGLD' ." )
805+ See definition of ` macros' : URL `http://git.io/vRGLD' ." )
806806 (defconst clojure--sym-forbidden-1st-chars (concat clojure--sym-forbidden-rest-chars " 0-9:'" )
807807 " A list of chars that a Clojure symbol cannot start with.
808808See the for-loop: URL `http://git.io/vRGTj' lines: URL
809809`http://git.io/vRGIh' , URL `http://git.io/vRGLE' and value
810- definition of ' macros': URL `http://git.io/vRGLD' ." )
810+ definition of ` macros' : URL `http://git.io/vRGLD' ." )
811811 (defconst clojure--sym-regexp
812812 (concat " [^" clojure--sym-forbidden-1st-chars " ][^" clojure--sym-forbidden-rest-chars " ]*" )
813813 " A regexp matching a Clojure symbol or namespace alias.
@@ -1305,7 +1305,7 @@ will align the values like this:
13051305
13061306(defcustom clojure-special-arg-indent-factor
13071307 2
1308- " Factor of the ' lisp-body-indent' used to indent special arguments."
1308+ " Factor of the ` lisp-body-indent' used to indent special arguments."
13091309 :package-version '(clojure-mode . " 5.13" )
13101310 :type 'integer
13111311 :safe 'integerp )
@@ -1710,7 +1710,7 @@ This function also returns nil meaning don't specify the indentation."
17101710 (put sym 'clojure-indent-function indent))
17111711
17121712(defun clojure--maybe-quoted-symbol-p (x )
1713- " Check that X is either a symbol or a quoted symbol like :foo or 'foo."
1713+ " Check that X is either a symbol or a quoted symbol like :foo or \\= 'foo."
17141714 (or (symbolp x)
17151715 (and (listp x)
17161716 (= 2 (length x))
@@ -1744,7 +1744,7 @@ https://docs.cider.mx/cider/indent_spec.html e.g. (2 :form
17441744
17451745(defun clojure--valid-put-clojure-indent-call-p (exp )
17461746 " Check that EXP is a valid `put-clojure-indent' expression.
1747- For example: (put-clojure-indent 'defrecord '(2 :form :form (1))."
1747+ For example: (put-clojure-indent \\= 'defrecord \\= '(2 :form :form (1))."
17481748 (unless (and (listp exp)
17491749 (= 3 (length exp))
17501750 (eq 'put-clojure-indent (nth 0 exp))
0 commit comments