coq: fix backslash escaping in documentation.
We want to output "\\.v$" so we need to write "\\\\.v$". Closes Homebrew/homebrew#28693. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
parent
150eec20f4
commit
3bacbbe468
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ class Coq < Formula
|
|||
|
||||
To use the Coq Emacs mode, you need to put the following lines in
|
||||
your .emacs file:
|
||||
(setq auto-mode-alist (cons '("\\.v$" . coq-mode) auto-mode-alist))
|
||||
(setq auto-mode-alist (cons '("\\\\.v$" . coq-mode) auto-mode-alist))
|
||||
(autoload 'coq-mode "coq" "Major mode for editing Coq vernacular." t)
|
||||
EOS
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue