[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/fountain-mode 6f2d72e: More FIXME commentary & bump ver
From: |
Stefan Monnier |
Subject: |
[elpa] externals/fountain-mode 6f2d72e: More FIXME commentary & bump version number |
Date: |
Thu, 11 Oct 2018 11:02:08 -0400 (EDT) |
branch: externals/fountain-mode
commit 6f2d72ecbe8d6cad637f3eac4de88dff469dd42c
Author: Paul W. Rankin <address@hidden>
Commit: Paul W. Rankin <address@hidden>
More FIXME commentary & bump version number
- Bump version number to account for
https://github.com/rnkn/fountain-mode/issues/97
- Remove Github URL from `fountain' group
- More FIXME clarifications
---
fountain-mode.el | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/fountain-mode.el b/fountain-mode.el
index 854676d..1579836 100644
--- a/fountain-mode.el
+++ b/fountain-mode.el
@@ -4,7 +4,7 @@
;; Author: Paul Rankin <address@hidden>
;; Keywords: wp, text
-;; Version: 2.6.0
+;; Version: 2.6.1
;; Package-Requires: ((emacs "24.5"))
;; This file is not part of GNU Emacs.
@@ -142,7 +142,7 @@
(eval-when-compile (require 'cl-lib))
(defconst fountain-version
- "2.6.0")
+ "2.6.1")
(defun fountain-version ()
"Return `fountain-mode' version."
@@ -152,8 +152,7 @@
(defgroup fountain ()
"Major mode for screenwriting in Fountain markup."
:prefix "fountain-"
- :group 'text
- :link '(url-link "https://github.com/rnkn/fountain-mode"))
+ :group 'text)
;;; Obsolete Warnings
@@ -1169,7 +1168,8 @@ See <http://debbugs.gnu.org/24073>."
"Match scene heading if point is at a scene heading, nil otherwise."
(save-excursion
(save-restriction
- (widen) ;FIXME: Why?
+ ;; Widen the restriction to ensure the previous line really is blank.
+ (widen)
(beginning-of-line)
(and (looking-at fountain-scene-heading-regexp)
(fountain-blank-before-p)))))
@@ -4480,7 +4480,7 @@ same script may result in errors in output."
(characterp value)))
:group 'fountain-scene-number)
-(defun fountain-scene-number-to-list (string) ; FIXME: alternate separators
and starting char
+(defun fountain-scene-number-to-list (string)
"Read scene number STRING and return a list.
If `fountain-prefix-revised-scene-numbers' is non-nil:
@@ -4492,6 +4492,8 @@ Or if nil:
\"10\" -> (10)
\"10AA\" -> (10 1 1)"
+ ;; FIXME: does not account for user option `fountain-scene-number-separator'
+ ;; or `fountain-scene-number-first-revision'.
(let (number revision)
(when (stringp string)
(if fountain-prefix-revised-scene-numbers
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [elpa] externals/fountain-mode 6f2d72e: More FIXME commentary & bump version number,
Stefan Monnier <=