summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Larsson2020-12-26 14:42:31 +0100
committerKim Larsson2020-12-26 14:42:31 +0100
commitb634f378325ed9185e5df32574a93f7272ca0ecb (patch)
tree82fc81f8330193e1b72ff8c7f3d07be1ac7a46fb
parent81840d8fe75832cd436f530f82dc7d73ae752608 (diff)
downloadaur-b634f378325ed9185e5df32574a93f7272ca0ecb.tar.gz
Added missing escapes.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD2
-rw-r--r--emacs-yaml-mode.install4
3 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3b12ae11ddd3..64e8aec13c1b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = emacs-yaml-mode
pkgdesc = Emacs major mode for editing files in the YAML data serialization format
pkgver = 0.0.15
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/yoshiki/yaml-mode
install = emacs-yaml-mode.install
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index 569138f2e381..a3bb1ead67fb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
pkgname=emacs-yaml-mode
pkgver=0.0.15
-pkgrel=1
+pkgrel=2
pkgdesc="Emacs major mode for editing files in the YAML data serialization format"
arch=('any')
url="https://github.com/yoshiki/yaml-mode"
diff --git a/emacs-yaml-mode.install b/emacs-yaml-mode.install
index 11f72234dc06..74b4c1d41f21 100644
--- a/emacs-yaml-mode.install
+++ b/emacs-yaml-mode.install
@@ -7,8 +7,8 @@ cat << EOF
(require 'yaml-mode)
(add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode))
==> Unlike python-mode, this mode follows the Emacs convention of not
- binding the ENTER key to `newline-and-indent'. To get this
- behavior, add the key definition to `yaml-mode-hook':
+ binding the ENTER key to \`newline-and-indent'. To get this
+ behavior, add the key definition to \`yaml-mode-hook':
(add-hook 'yaml-mode-hook
'(lambda ()