[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/proof-general 0e84b2bdd0 03/10: #795, Compiler warnings: w
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/proof-general 0e84b2bdd0 03/10: #795, Compiler warnings: wrong usage of unescaped single quotes |
Date: |
Fri, 28 Mar 2025 16:02:45 -0400 (EDT) |
branch: elpa/proof-general
commit 0e84b2bdd0c3f32680a956cf83e24c805eddeca8
Author: Andreas Roehler <andreas.roehler@online.de>
Commit: Andreas Roehler <andreas.roehler@online.de>
#795, Compiler warnings: wrong usage of unescaped single quotes
coq/coq-db.el:31:11: Warning: defconst ‘coq-syntax-db’ docstring has wrong
usage of unescaped single quotes
fixed
---
coq/coq-db.el | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/coq/coq-db.el b/coq/coq-db.el
index 6e79e95f3b..680292d161 100644
--- a/coq/coq-db.el
+++ b/coq/coq-db.el
@@ -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\")
))
@@ -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)
- [nongnu] elpa/proof-general updated (809b01e845 -> 85cde55a86), ELPA Syncer, 2025/03/28
- [nongnu] elpa/proof-general 307831e26e 01/10: Fixed an error when `proof-ignore-for-undo-count` is a function., ELPA Syncer, 2025/03/28
- [nongnu] elpa/proof-general f69ea38e57 08/10: Merge pull request #796 from andreas-roehler/master, ELPA Syncer, 2025/03/28
- [nongnu] elpa/proof-general 2dac06d9e3 04/10: Makefile: Replace "which" by POSIX "command -v", ELPA Syncer, 2025/03/28
- [nongnu] elpa/proof-general a36eb9bed9 02/10: Fix #757 indentation of "\in", ELPA Syncer, 2025/03/28
- [nongnu] elpa/proof-general 8e3384e8f5 07/10: Merge pull request #812 from ulm/which, ELPA Syncer, 2025/03/28
- [nongnu] elpa/proof-general 28497cd899 05/10: Fix low level code to find the start of a command., ELPA Syncer, 2025/03/28
- [nongnu] elpa/proof-general 2185896333 09/10: Merge pull request #789 from Matafou/fix-indent-backslashid, ELPA Syncer, 2025/03/28
- [nongnu] elpa/proof-general 3a2af43ce9 06/10: Merge pull request #813 from Matafou/fix-real-start, ELPA Syncer, 2025/03/28
- [nongnu] elpa/proof-general 85cde55a86 10/10: Merge pull request #679 from rssoc/master, ELPA Syncer, 2025/03/28
- [nongnu] elpa/proof-general 0e84b2bdd0 03/10: #795, Compiler warnings: wrong usage of unescaped single quotes,
ELPA Syncer <=