[elpa] externals/realgud-jdb 14918c8 2/2: Correct some realgud function call prefixes

2019-05-23 Thread Rocky Bernstein
branch: externals/realgud-jdb
commit 14918c896826511264296beb4a7ad93e5d07ead8
Author: rocky 
Commit: rocky 

Correct some realgud function call prefixes
---
 common.mk  |  2 +-
 realgud-jdb/jdb.el | 16 
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/common.mk b/common.mk
index 36fbedc..910bef6 100644
--- a/common.mk
+++ b/common.mk
@@ -19,6 +19,6 @@ short:
  EMACSLOADPATH=$(EMACSLOADPATH) $(EMACS) --batch \
$(AM_ELCFLAGS) $(ELCFLAGS) \
$$am__subdir_includes -L $(builddir) -L $(srcdir) \
-   --eval "(defun byte-compile-dest-file (f) \"$@\")" \
+   --eval "(defun byte-compile-dest-file-function (f) \"$@\")" \
--eval "(unless (byte-compile-file \"$<\") (kill-emacs 1))"; \
else :; fi
diff --git a/realgud-jdb/jdb.el b/realgud-jdb/jdb.el
index 38b26a8..7ebcd00 100644
--- a/realgud-jdb/jdb.el
+++ b/realgud-jdb/jdb.el
@@ -15,10 +15,10 @@
 (require 'realgud)
 (require-relative-list '("core" "track-mode") "realgud-jdb-")
 
-(declare-function realgud--jdb-query-cmdline  'realgud--jdb-core)
-(declare-function realgud--jdb-parse-cmd-args 'realgud--jdb-core)
-(declare-function realgud--run-process'realgud--core)
-(declare-function realgud--flatten'realgud-utils)
+(declare-function realgud:jdb-query-cmdline  'realgud--jdb-core)
+(declare-function realgud:jdb-parse-cmd-args 'realgud--jdb-core)
+(declare-function realgud:run-process'realgud--core)
+(declare-function realgud:flatten'realgud-utils)
 
 (defvar realgud--jdb-file-remap nil
   "A buffer-local hash table to map a Java file reproted by jdb into a file 
seen in the filesystem."
@@ -84,14 +84,14 @@ fringe and marginal icons."
   (setq gud-jdb-classpath-string nil)
 
   (let* (
-(cmd-str (or opt-cmd-line (realgud--jdb-query-cmdline "jdb")))
+(cmd-str (or opt-cmd-line (realgud:jdb-query-cmdline "jdb")))
 (cmd-args (split-string-and-unquote cmd-str))
-(parsed-args (realgud--jdb-parse-cmd-args cmd-args))
+(parsed-args (realgud:jdb-parse-cmd-args cmd-args))
 (script-args (caddr parsed-args))
 (script-name (car script-args))
 (parsed-cmd-args
- (cl-remove-if 'nil (realgud--flatten parsed-args)))
-(cmd-buf (realgud--run-process "jdb" script-name parsed-cmd-args
+ (cl-remove-if 'nil (realgud:flatten parsed-args)))
+(cmd-buf (realgud:run-process "jdb" script-name parsed-cmd-args
 'realgud--jdb-track-mode-hook no-reset))
 )
 (if cmd-buf



[elpa] externals/realgud-jdb updated (ef0910c -> 14918c8)

2019-05-23 Thread Rocky Bernstein
rocky pushed a change to branch externals/realgud-jdb.

  from  ef0910c   checkdoc lint
   new  f86b728   Administrivia ...
   new  14918c8   Correct some realgud function call prefixes


Summary of changes:
 common.mk  |  2 +-
 common.mk.in   |  2 +-
 compute-lispdir.sh |  4 ++--
 configure.ac   |  4 ++--
 realgud-jdb/jdb.el | 16 
 5 files changed, 14 insertions(+), 14 deletions(-)



[elpa] externals/realgud-jdb f86b728 1/2: Administrivia ...

2019-05-23 Thread Rocky Bernstein
branch: externals/realgud-jdb
commit f86b7284ecf97d5087868c5309b27910e21d90df
Author: rocky 
Commit: rocky 

Administrivia ...

* require Emacs 25 or later
* remove deprecated function in shell script
---
 common.mk.in   | 2 +-
 compute-lispdir.sh | 4 ++--
 configure.ac   | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/common.mk.in b/common.mk.in
index c28f493..032d0d7 100644
--- a/common.mk.in
+++ b/common.mk.in
@@ -19,6 +19,6 @@ short:
  EMACSLOADPATH=$(EMACSLOADPATH) $(EMACS) --batch \
$(AM_ELCFLAGS) $(ELCFLAGS) \
$$am__subdir_includes -L $(builddir) -L $(srcdir) \
-   --eval "(defun byte-compile-dest-file (f) \"$@\")" \
+   --eval "(defun byte-compile-dest-file-function (f) \"$@\")" \
--eval "(unless (byte-compile-file \"$<\") (kill-emacs 1))"; \
else :; fi
diff --git a/compute-lispdir.sh b/compute-lispdir.sh
index 72e8c13..553b579 100755
--- a/compute-lispdir.sh
+++ b/compute-lispdir.sh
@@ -24,7 +24,7 @@ done
 for dir in $list ; do
 if [[ -d $dir ]] ; then
case $dir in
-   */emacs/2[4-7]\.[0-9]/site-lisp)
+   */emacs/2[5-8]\.[0-9]/site-lisp)
((DEBUG)) && echo "versioned site lisp: $dir"
echo "$dir"
exit 0
@@ -35,7 +35,7 @@ done
 for dir in $list ; do
 if [[ -d $dir ]] ; then
case $dir in
-   */emacs/2[4-7]\.[0-9]/site-lisp)
+   */emacs/2[5-8]\.[0-9]/site-lisp)
((DEBUG)) && echo "versioned site lisp: $dir"
echo "$dir"
exit 0
diff --git a/configure.ac b/configure.ac
index b107d1c..c460a1d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10,9 +10,9 @@ AC_ARG_WITH(emacs, AC_HELP_STRING([--with-emacs],
 
 AC_MSG_NOTICE("Checking emacs version")
 $EMACS -batch -q --no-site-file -eval \
-  '(if (<= emacs-major-version 23)
+  '(if (<= emacs-major-version 24)
(progn
- (error "You need GNU Emacs 24 or better.")
+ (error "You need GNU Emacs 25 or later.")
  (kill-emacs 1)
)
)'



[elpa] externals/fountain-mode 16001a5 4/4: Use lm-version, bump version number

2019-05-23 Thread Paul Rankin
branch: externals/fountain-mode
commit 16001a5d8f039d031fb4a4c474664eb49676deb6
Author: Paul W. Rankin 
Commit: Paul W. Rankin 

Use lm-version, bump version number
---
 fountain-mode.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/fountain-mode.el b/fountain-mode.el
index 1b29129..0602098 100644
--- a/fountain-mode.el
+++ b/fountain-mode.el
@@ -2,9 +2,9 @@
 
 ;; Copyright (c) 2014-2019 Free Software Foundation, Inc.
 
-;; Author: Paul Rankin 
+;; Author: Paul W. Rankin 
 ;; Keywords: wp, text
-;; Version: 2.7.0
+;; Version: 2.7.1
 ;; Package-Requires: ((emacs "24.5"))
 
 ;; This file is part of GNU Emacs.
@@ -92,7 +92,7 @@
 (eval-when-compile (require 'cl-lib))
 
 (defconst fountain-version
-  "2.7.0")
+  (lm-version))
 
 (defun fountain-version ()
   "Return `fountain-mode' version."



[elpa] externals/fountain-mode a017347 1/4: Update README example links, delete screenshots/01.png

2019-05-23 Thread Paul Rankin
branch: externals/fountain-mode
commit a017347d29975bd032f22feb923d874d7d89c5e8
Author: Paul W. Rankin 
Commit: Paul W. Rankin 

Update README example links, delete screenshots/01.png
---
 LICENSE.txt => LICENSE |   0
 README.md  |  86 +++--
 fountain-mode.el   |  76 +++
 screenshots/01.png | Bin 949424 -> 0 bytes
 4 files changed, 67 insertions(+), 95 deletions(-)

diff --git a/LICENSE.txt b/LICENSE
similarity index 100%
rename from LICENSE.txt
rename to LICENSE
diff --git a/README.md b/README.md
index c7f7e57..7b02b0e 100644
--- a/README.md
+++ b/README.md
@@ -1,81 +1,61 @@
-Fountain Mode
-=
+# Fountain Mode #
 
-Fountain Mode is a screenwriting environment for GNU Emacs using the Fountain
-markup format. For more information on the Fountain markup format, visit
-.
+Fountain Mode is a screenwriting environment for GNU Emacs using the
+Fountain markup format. For more information on the Fountain markup
+format, visit http://fountain.io.
 
-![screenshot](https://github.com/rnkn/fountain-mode/raw/master/screenshots/01.png)
+Screenshot: https://f002.backblazeb2.com/file/pwr-share/fountain-mode.png
 
-Pictured: *The Abductors* by Paul W. Rankin in Fountain Mode (using 
[imenu-list] and
-[Olivetti] minor modes)
-
-[imenu-list]: https://github.com/bmag/imenu-list "imenu-list"
-[olivetti]: https://github.com/rnkn/olivetti "Olivetti"
-
-Features
-
+## Features ##
 
 - Support for Fountain 1.1 specification
 - WYSIWYG auto-align elements (display only, does not modify file contents)
   specific to script format, e.g. screenplay, stageplay or user-defined format
-- Traditional TAB writing style for auto-upcasing character names
-  (see [Do What I Mean])
+- Navigation by section, scene, character name, or page
+- 3 levels of syntax highlighting
+- Integration with outline to fold/cycle visibility of sections and scenes
+- Integration with imenu (sections, scene headings, notes)
+- Intergration with auto-insert for title page metadata
+- Traditional TAB auto-completion writing style
+- Automatically add/remove character "(CONT'D)"
 - Export to plain text, HTML, LaTeX, Final Draft (FDX), or Fountain
 - Export to standalone document or snippet
-- Optionally show approximate page count (current page of total pages) in
-  mode-line
-- Include external files with `{{ include: FILENAME }}`
-- Integration with `outline` to fold/cycle visibility of sections and scenes
-  (see [Outlining])
-- Integration with `imenu` (sections, scene headings, notes)
-- Intergration with `auto-insert` for title page metadata
-- Add/remove automatic continuation string to successively speaking characters
-- Navigation by section, scene, character name, or page
+- Emphasis (bold, italic, underlined text)
+- Include external files with {{ include: FILENAME }}
 - Optionally display scene numbers in the right margin
 - Intelligent insertion of a page breaks
-- 3 levels of element syntax highlighting
-- Automatic loading for `*.fountain` files
+- Automatic loading for *.fountain files
 - Include or omit a title page
-- Emphasis (bold, italic, underlined text)
 - Toggle visibility of emphasis delimiters and syntax characters
 - Everything is customizable
 
 Check out the Nicholl Fellowship sample script exported from Fountain Mode to:
 
-- [Plain 
text](https://gist.github.com/rnkn/edd4fd20e0f6ce2ca1f75e37496e38c9/raw/)
-- [HTML](https://rawgit.com/rnkn/mcqueen/master/sample/sample.html)
-- [LaTeX](https://www.sharelatex.com/project/54ed9180966959cb7fdbde8e)
-- [Final 
Draft](https://gist.github.com/rnkn/f56934ac723d43c5dec63952dd99dcfd/raw/)
-
-Most common features are accessible from the menu. For a full list of functions
-and key-bindings, type C-h m.
+- Plain text: https://paste.sr.ht/blob/930557283847c35cafbba81cf34f389980b35b3c
+- HTML: https://f002.backblazeb2.com/file/pwr-share/fountain-export.html
+- Final Draft: https://f002.backblazeb2.com/file/pwr-share/fountain-export.fdx
+- LaTeX: https://www.overleaf.com/project/54ed9180966959cb7fdbde8e
 
-[Do What I Mean]: https://github.com/rnkn/fountain-mode/wiki/Do-What-I-Mean
-[Outlining]: https://github.com/rnkn/fountain-mode/wiki/Outlining
+Most common features are accessible from the menu. For a full list of
+functions and key-bindings, type C-h m.
 
-For more, see the [Wiki](https://github.com/rnkn/fountain-mode/wiki).
-
-Requirements
-
+## Requirements ##
 
 - Emacs 24.5
-- LaTeX packages for PDF export: `geometry` `fontspec` `titling` `fancyhdr`
-  `marginnote` `ulem` `xstring` `oberdiek`
+- LaTeX packages for PDF export: geometry fontspec titling fancyhdr
+  marginnote ulem xstring oberdiek
 
-Installation
-
+## Installation ##
 
-Fountain Mode is now part of GNU ELPA and can be installed with `M-x
-package-install RET fountain-mode RET`.
+Fountain Mode is now part of GNU ELPA and can be installed with M-x
+package-insta

[elpa] externals/fountain-mode 6577c05 2/4: Fix fountain-completion-update-locations bug

2019-05-23 Thread Paul Rankin
branch: externals/fountain-mode
commit 6577c05e731a25a56b809323559d252f3f331eba
Author: Paul W. Rankin 
Commit: Paul W. Rankin 

Fix fountain-completion-update-locations bug
---
 fountain-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fountain-mode.el b/fountain-mode.el
index b79cba4..b1319ce 100644
--- a/fountain-mode.el
+++ b/fountain-mode.el
@@ -1380,7 +1380,7 @@ Add to `fountain-mode-hook' to have completion upon load."
   (save-excursion
 (save-restriction
   (widen)
-  (fountain-completion-update-scene-headings (point-min) (point-max))
+  (fountain-completion-update-locations (point-min) (point-max))
   (fountain-completion-update-characters (point-min) (point-max
   (message "Completion candidates updated"))
 



[elpa] externals/fountain-mode 9f8e5cc 3/4: Only auto-complete when at eolp

2019-05-23 Thread Paul Rankin
branch: externals/fountain-mode
commit 9f8e5ccfa32793245f0073a5c92ee722bf1b7bfb
Author: Paul W. Rankin 
Commit: Paul W. Rankin 

Only auto-complete when at eolp
---
 fountain-mode.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fountain-mode.el b/fountain-mode.el
index b1319ce..1b29129 100644
--- a/fountain-mode.el
+++ b/fountain-mode.el
@@ -1363,7 +1363,8 @@ Added to `completion-at-point-functions'."
(point)
(completion-table-case-fold
 fountain-completion-locations)))
-((fountain-blank-before-p)
+((and (eolp)
+  (fountain-blank-before-p))
  ;; Return character completion
  (list (line-beginning-position)
(point)



[elpa] externals/fountain-mode updated (eef014a -> 16001a5)

2019-05-23 Thread Paul Rankin
pwr pushed a change to branch externals/fountain-mode.

  from  eef014a   Update README/Commentary/code comments
   new  a017347   Update README example links, delete screenshots/01.png
   new  6577c05   Fix fountain-completion-update-locations bug
   new  9f8e5cc   Only auto-complete when at eolp
   new  16001a5   Use lm-version, bump version number


Summary of changes:
 LICENSE.txt => LICENSE |   0
 README.md  |  86 +++-
 fountain-mode.el   |  87 +++--
 screenshots/01.png | Bin 949424 -> 0 bytes
 4 files changed, 73 insertions(+), 100 deletions(-)
 rename LICENSE.txt => LICENSE (100%)
 delete mode 100644 screenshots/01.png