emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/auctex bfaa079 14/42: Conform to elisp coding conventio


From: Tassilo Horn
Subject: [elpa] externals/auctex bfaa079 14/42: Conform to elisp coding convention
Date: Thu, 23 Nov 2017 06:06:10 -0500 (EST)

branch: externals/auctex
commit bfaa079a2836996a4733056c0c90daf3ad141c42
Author: Ikumi Keita <address@hidden>
Commit: Ikumi Keita <address@hidden>

    Conform to elisp coding convention
    
    * style/biblatex.el (LaTeX-arg-addbibresource)
    (LaTeX-biblatex-package-options):
    * style/fontspec.el (LaTeX-fontspec-arg-font):
    Add "done" message.
    * style/relsize.el ("relsize"): Tailor prompt string.
    * style/bidi.el: Remove spurious execution bit.
---
 style/biblatex.el | 4 +++-
 style/bidi.el     | 0
 style/fontspec.el | 3 ++-
 style/relsize.el  | 4 ++--
 4 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/style/biblatex.el b/style/biblatex.el
index 6662695..4c47295 100644
--- a/style/biblatex.el
+++ b/style/biblatex.el
@@ -161,6 +161,7 @@ string."
     (or (symbol-value files)
        (set files (mapcar 'list (TeX-search-files-by-type
                                  'biberinputs 'global t nil))))
+    (message "Searching for BibLaTeX files...done")
     (setq database (completing-read
                    (TeX-argument-prompt optional prompt "BibLaTeX files")
                    (append (mapcar 'list (TeX-search-files-by-type
@@ -618,7 +619,8 @@ for citation keys."
        (progn
          (message "Searching for BibLaTeX styles...")
          (setq BibLaTeX-global-style-files
-               (TeX-search-files-by-type 'bbxinputs 'global t t)))
+               (TeX-search-files-by-type 'bbxinputs 'global t t))
+         (message "Searching for BibLaTeX styles...done"))
       ;; ...else, use for completion only standard BibLaTeX styles (see ยง3.3 of
       ;; Biblatex reference manual).
       (setq BibLaTeX-global-style-files
diff --git a/style/bidi.el b/style/bidi.el
old mode 100755
new mode 100644
diff --git a/style/fontspec.el b/style/fontspec.el
index 58f4e48..9446b72 100644
--- a/style/fontspec.el
+++ b/style/fontspec.el
@@ -189,7 +189,8 @@ to retrieve the list of fonts."
            (re-search-forward "^\\([^\n\r\t]*\\)\t\\([^\n\r\t]*\\)\t.*$" nil t)
          (add-to-list 'LaTeX-fontspec-font-list (match-string-no-properties 1))
          (add-to-list 'LaTeX-fontspec-font-list
-                      (match-string-no-properties 2))))))
+                      (match-string-no-properties 2))))
+      (message "Searching for fonts...done")))
   (TeX-argument-insert
    (completing-read
     (TeX-argument-prompt optional prompt "Font name")
diff --git a/style/relsize.el b/style/relsize.el
index ceaabf5..0a47b01 100644
--- a/style/relsize.el
+++ b/style/relsize.el
@@ -38,8 +38,8 @@
     ;; Declarations and commands
     '("relsize"     "Steps"                    )
     '("relscale"    "Scale factor"             )
-    '("larger"      [ "Steps (default: 1)" ] -1)
-    '("smaller"     [ "Steps (default: 1)" ] -1)
+    '("larger"      [ "Steps (default 1)" ] -1)
+    '("smaller"     [ "Steps (default 1)" ] -1)
     '("textlarger"  [ "Steps" ]               t)
     '("textsmaller" [ "Steps" ]               t)
     '("textscale"   "Scale factor"            t)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]