Skip to content

Commit f69ea38

Browse files
authored
Merge pull request #796 from andreas-roehler/master
#795, Compiler warnings: wrong usage of unescaped single quotes
2 parents 8e3384e + 0e84b2b commit f69ea38

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

coq/coq-db.el

+5-5
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ menu but only in interactive completions.
6565
Example of what could be in your emacs init file:
6666
6767
\(defvar coq-user-tactics-db
68-
'(
68+
\\='(
6969
(\"mytac\" \"mt\" \"mytac # #\" t \"mytac\")
7070
(\"myassert by\" \"massb\" \"myassert ( # : # ) by #\" t \"assert\")
7171
))
@@ -354,19 +354,19 @@ See `coq-syntax-db' for DB structure."
354354

355355
(defconst coq-solve-tactics-face 'coq-solve-tactics-face
356356
"Expression that evaluates to a face.
357-
Required so that 'coq-solve-tactics-face is a proper facename")
357+
Required so that \\='coq-solve-tactics-face is a proper facename")
358358

359359
(defconst coq-cheat-face 'coq-cheat-face
360360
"Expression that evaluates to a face.
361-
Required so that 'coq-cheat-face is a proper facename")
361+
Required so that \\='coq-cheat-face is a proper facename")
362362

363363
(defconst coq-symbol-binder-face 'coq-symbol-binder-face
364364
"Expression that evaluates to a face.
365-
Required so that 'coq-symbol-binder-face is a proper facename")
365+
Required so that \\='coq-symbol-binder-face is a proper facename")
366366

367367
(defconst coq-symbol-face 'coq-symbol-face
368368
"Expression that evaluates to a face.
369-
Required so that 'coq-symbol-binder-face is a proper facename")
369+
Required so that \\='coq-symbol-binder-face is a proper facename")
370370

371371
(defconst coq-question-mark-face 'coq-question-mark-face)
372372

0 commit comments

Comments
 (0)