Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#795, Compiler warnings: wrong usage of unescaped single quotes #796

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions coq/coq-db.el
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ menu but only in interactive completions.
Example of what could be in your emacs init file:

\(defvar coq-user-tactics-db
'(
\\='(
(\"mytac\" \"mt\" \"mytac # #\" t \"mytac\")
(\"myassert by\" \"massb\" \"myassert ( # : # ) by #\" t \"assert\")
))
Expand Down Expand Up @@ -354,19 +354,19 @@ See `coq-syntax-db' for DB structure."

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

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

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

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

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

Expand Down