summaryrefslogtreecommitdiff
path: root/.emacs.d/lisp/yaml-mode.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/lisp/yaml-mode.el')
-rw-r--r--.emacs.d/lisp/yaml-mode.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/.emacs.d/lisp/yaml-mode.el b/.emacs.d/lisp/yaml-mode.el
index 9f76c38..7adb17f 100644
--- a/.emacs.d/lisp/yaml-mode.el
+++ b/.emacs.d/lisp/yaml-mode.el
@@ -7,7 +7,7 @@
7;; Maintainer: Vasilij Schneidermann <v.schneidermann@gmail.com> 7;; Maintainer: Vasilij Schneidermann <v.schneidermann@gmail.com>
8;; Package-Requires: ((emacs "24.1")) 8;; Package-Requires: ((emacs "24.1"))
9;; Keywords: data yaml 9;; Keywords: data yaml
10;; Version: 0.0.13 10;; Version: 0.0.14
11 11
12;; This file is not part of Emacs 12;; This file is not part of Emacs
13 13
@@ -117,7 +117,7 @@ that key is pressed to begin a block literal."
117 117
118;; Constants 118;; Constants
119 119
120(defconst yaml-mode-version "0.0.13" "Version of `yaml-mode'.") 120(defconst yaml-mode-version "0.0.14" "Version of `yaml-mode'.")
121 121
122(defconst yaml-blank-line-re "^ *$" 122(defconst yaml-blank-line-re "^ *$"
123 "Regexp matching a line containing only (valid) whitespace.") 123 "Regexp matching a line containing only (valid) whitespace.")
@@ -286,7 +286,7 @@ line in the match data, as consumed by `font-lock-keywords' matcher
286functions. The function begins by searching backwards to determine 286functions. The function begins by searching backwards to determine
287whether or not the current line is within a block literal. This could 287whether or not the current line is within a block literal. This could
288be time-consuming in large buffers, so the number of lines searched is 288be time-consuming in large buffers, so the number of lines searched is
289artificially limitted to the value of 289artificially limited to the value of
290`yaml-block-literal-search-lines'." 290`yaml-block-literal-search-lines'."
291 (if (eolp) (goto-char (1+ (point)))) 291 (if (eolp) (goto-char (1+ (point))))
292 (unless (or (eobp) (>= (point) bound)) 292 (unless (or (eobp) (>= (point) bound))