[elpa] master updated (485aba4 -> d5af1bd)

2016-06-14 Thread Michael Albinus
albinus pushed a change to branch master.

  from  485aba4   Further work on debbugs-gnu-search
   new  aea4c6a   Release debbugs 0.9.6.
   new  d5af1bd   * packages/tramp-theme/tramp-theme.el: Remove file-local 
variables.


Summary of changes:
 packages/debbugs/debbugs-gnu.el |   50 ++--
 packages/debbugs/debbugs-org.el |6 ++
 packages/debbugs/debbugs-ug.info|  113 ---
 packages/debbugs/debbugs-ug.texi|   43 +
 packages/debbugs/debbugs.el |2 +-
 packages/tramp-theme/tramp-theme.el |4 --
 6 files changed, 137 insertions(+), 81 deletions(-)



[elpa] master d5af1bd 2/2: * packages/tramp-theme/tramp-theme.el: Remove file-local variables.

2016-06-14 Thread Michael Albinus
branch: master
commit d5af1bd4f185425a27b96fa63c41cf56f6573ad0
Author: Michael Albinus 
Commit: Michael Albinus 

* packages/tramp-theme/tramp-theme.el: Remove file-local variables.
---
 packages/tramp-theme/tramp-theme.el |4 
 1 file changed, 4 deletions(-)

diff --git a/packages/tramp-theme/tramp-theme.el 
b/packages/tramp-theme/tramp-theme.el
index 6da29a2..a953c3e 100644
--- a/packages/tramp-theme/tramp-theme.el
+++ b/packages/tramp-theme/tramp-theme.el
@@ -165,8 +165,4 @@ Used in different hooks, in order to accelerate the 
redisplay."
 ;;   to edit the faces.  Maybe use (widget-get custom-face-edit :args)
 ;;   for this.
 
-;; Local Variables:
-;; no-byte-compile: t
-;; End:
-
 ;;; tramp-theme.el ends here



[elpa] master aea4c6a 1/2: Release debbugs 0.9.6.

2016-06-14 Thread Michael Albinus
branch: master
commit aea4c6ae3a0b470ca16b2b209f8ee344c7b21a94
Author: Michael Albinus 
Commit: Michael Albinus 

Release debbugs 0.9.6.

* packages/debbugs/debbugs-gnu.el (debbugs-gnu-search): Fix list
of supported attributes.
(debbugs-gnu-patches): Move down.  Do not use hard coded package list.
(debbugs-gnu-get-bugs): Re-enable user tags.

* packages/debbugs/debbugs-org.el (debbugs-org-patches): New defun.

* packages/debbugs/debbugs-ug.texi (Retrieving Bugs):
Add debbugs-gnu-patches and debbugs-org-patches.
(Searching Bugs): Precise, that this isn't a FULL text search.
Fix list of supported attributes.
(Tabulated Lists): Document debbugs-gnu-suppress-closed.

* packages/debbugs/debbugs.el: Increase Version to 0.9.6.
---
 packages/debbugs/debbugs-gnu.el  |   50 +++--
 packages/debbugs/debbugs-org.el  |6 ++
 packages/debbugs/debbugs-ug.info |  113 ++
 packages/debbugs/debbugs-ug.texi |   43 +++
 packages/debbugs/debbugs.el  |2 +-
 5 files changed, 137 insertions(+), 77 deletions(-)

diff --git a/packages/debbugs/debbugs-gnu.el b/packages/debbugs/debbugs-gnu.el
index 0ecfb16..c5c4ca9 100644
--- a/packages/debbugs/debbugs-gnu.el
+++ b/packages/debbugs/debbugs-gnu.el
@@ -343,12 +343,6 @@ be empty, in this case only the following attributes are 
used for
 search."))
 
 ;;;###autoload
-(defun debbugs-gnu-patches ()
-  "List the bug reports that have been marked as containing a patch."
-  (interactive)
-  (debbugs-gnu nil '("emacs") nil nil "patch"))
-
-;;;###autoload
 (defun debbugs-gnu-search ()
   "Search for Emacs bugs interactively.
 Search arguments are requested interactively.  The \"search
@@ -379,16 +373,28 @@ marked as \"client-side filter\"."
(setq key (completing-read
   "Enter attribute: "
   (if phrase
-  '("severity" "package" "tags"
-"author" "date" "subject"
-;; Client-side queries.
-"status")
-'("severity" "package" "archive" "src" "status" "tag"
-  "owner" "submitter" "maint" "correspondent"
-  ;; Client-side queries.
-  "date" "log_modified" "last_modified"
-  "found_date" "fixed_date" "unarchived"
-  "subject" "done" "forwarded" "msgid" "summary"))
+  (append
+   '("severity" "package" "tags"
+ "author" "date" "subject")
+;; Client-side filters.
+   (mapcar
+(lambda (key)
+  (propertize
+   key 'face 'debbugs-gnu-done
+   'help-echo "Client-side filter"))
+'("status")))
+(append
+ '("severity" "package" "archive" "src" "status" "tag"
+   "owner" "submitter" "maint" "correspondent")
+ ;; Client-side filters.
+ (mapcar
+  (lambda (key)
+(propertize
+ key 'face 'debbugs-gnu-done
+ 'help-echo "Client-side filter"))
+  '("date" "log_modified" "last_modified"
+"found_date" "fixed_date" "unarchived"
+"subject" "done" "forwarded" "msgid" "summary"
   nil t))
(cond
 ;; Server-side queries.
@@ -497,6 +503,12 @@ marked as \"client-side filter\"."
(debbugs-gnu severities packages archivedp
 
 ;;;###autoload
+(defun debbugs-gnu-patches ()
+  "List the bug reports that have been marked as containing a patch."
+  (interactive)
+  (debbugs-gnu nil debbugs-gnu-default-packages nil nil "patch"))
+
+;;;###autoload
 (defun debbugs-gnu (severities &optional packages archivedp suppress tags)
   "List all outstanding bugs."
   (interactive
@@ -563,7 +575,7 @@ marked as \"client-side filter\"."
   "Retrieve bug numbers from debbugs.gnu.org according search criteria."
   (let* ((debbugs-port "gnu.org")
 (bugs (assoc 'bugs query))
-(tags (assoc 'tag query))
+(tags (and (member '(severity . "tagged") query) (assoc 'tag query)))
 (local-tags (and (member '(severity . "tagged") query) (not tags)))
 (phrase (assoc 'phrase query))
 args)
@@ -600,6 +612,10 @@ marked as \"client-side filter\"."
   (mapcar
(lambda (x) (cdr (assoc "id" x)))
(apply 'debbugs-search-est args)))
+ ;; User tags.
+ (tags
+  (setq args (mapcar (lambda (x) (if (eq x :package) :user x)) args))
+  (apply 'debbugs

[elpa] master e3e359d: * packages/num3-mode/num3-mode.el: Fix compilation warnings.

2016-06-14 Thread Michal Nazarewicz
branch: master
commit e3e359d00214ab6719876659a4f5e47314fe6b78
Author: Michal Nazarewicz 
Commit: Michal Nazarewicz 

* packages/num3-mode/num3-mode.el: Fix compilation warnings.

Fixes the following warnings:

In toplevel form:
num3-mode.el:47:1:Warning: defcustom for ‘num3-group-size’ fails to specify
type
num3-mode.el:47:1:Warning: defcustom for ‘num3-group-size’ fails to specify
type
num3-mode.el:50:1:Warning: defcustom for ‘num3-threshold’ fails to specify
type
num3-mode.el:50:1:Warning: defcustom for ‘num3-threshold’ fails to specify
type

In num3-mode:
num3-mode.el:95:11:Warning: ‘font-lock-fontify-buffer’ is for interactive 
use
only; use ‘font-lock-ensure’ or ‘font-lock-flush’ instead.
---
 packages/num3-mode/num3-mode.el |8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/packages/num3-mode/num3-mode.el b/packages/num3-mode/num3-mode.el
index 5026cbe..d4f12e0 100644
--- a/packages/num3-mode/num3-mode.el
+++ b/packages/num3-mode/num3-mode.el
@@ -45,10 +45,12 @@ font-lock is on."
   :group 'text)
 
 (defcustom num3-group-size 3
-  "Number of digits to group in decimal numbers.")
+  "Number of digits to group in decimal numbers."
+  :type 'integer)
 
 (defcustom num3-threshold 5
-  "Number must be at least that long to start highlighting.")
+  "Number must be at least that long to start highlighting."
+  :type 'integer)
 
 (defface num3-face-odd
   '((t))
@@ -92,7 +94,7 @@ where) decimal point (would be) is."
 (font-lock-add-keywords nil '(num3--matcher) 'append))
 (font-lock-remove-keywords nil '(num3--matcher)))
   (if (fboundp 'font-lock-flush) (font-lock-flush)
-(when font-lock-mode (font-lock-fontify-buffer
+(when font-lock-mode (with-no-warnings (font-lock-fontify-buffer)
 
 ;;;###autoload
 (define-globalized-minor-mode global-num3-mode num3-mode num3-mode)



[elpa] master updated (e3e359d -> 912f0e3)

2016-06-14 Thread Thomas Fitzsimmons
fitzsim pushed a change to branch master.

  from  e3e359d   * packages/num3-mode/num3-mode.el: Fix compilation 
warnings.
   new  55f563d   packages/excorporate: Interoperate with LaTeX preview
   new  912f0e3   packages/excorporate: Bump version to 0.7.4


Summary of changes:
 packages/excorporate/excorporate-org.el |1 +
 packages/excorporate/excorporate.el |2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)



[elpa] master 912f0e3 2/2: packages/excorporate: Bump version to 0.7.4

2016-06-14 Thread Thomas Fitzsimmons
branch: master
commit 912f0e3404c1ef2f427de12ba314a560a3c83962
Author: Thomas Fitzsimmons 
Commit: Thomas Fitzsimmons 

packages/excorporate: Bump version to 0.7.4
---
 packages/excorporate/excorporate.el |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/excorporate/excorporate.el 
b/packages/excorporate/excorporate.el
index 34984ef..d18421e 100644
--- a/packages/excorporate/excorporate.el
+++ b/packages/excorporate/excorporate.el
@@ -5,7 +5,7 @@
 ;; Author: Thomas Fitzsimmons 
 ;; Maintainer: Thomas Fitzsimmons 
 ;; Created: 2014-09-19
-;; Version: 0.7.3
+;; Version: 0.7.4
 ;; Keywords: calendar
 ;; Homepage: https://www.fitzsim.org/blog/
 ;; Package-Requires: ((emacs "24.1") (fsm "0.2") (soap-client "3.1.1") 
(url-http-ntlm "2.0.2"))



[elpa] master 55f563d 1/2: packages/excorporate: Interoperate with LaTeX preview

2016-06-14 Thread Thomas Fitzsimmons
branch: master
commit 55f563d8c9845cb0993b06edfb6b4ec4a4975b4a
Author: Thomas Fitzsimmons 
Commit: Thomas Fitzsimmons 

packages/excorporate: Interoperate with LaTeX preview

* packages/excorporate/excorporate-org.el
(exco-org-initialize-buffer): Set buffer-file-name to
excorporate-org-buffer-name (bug#23765).
---
 packages/excorporate/excorporate-org.el |1 +
 1 file changed, 1 insertion(+)

diff --git a/packages/excorporate/excorporate-org.el 
b/packages/excorporate/excorporate-org.el
index a06057a..05d11fb 100644
--- a/packages/excorporate/excorporate-org.el
+++ b/packages/excorporate/excorporate-org.el
@@ -34,6 +34,7 @@
   "Add initial text to the destination buffer."
   (with-current-buffer (get-buffer-create excorporate-org-buffer-name)
   (setq buffer-read-only t)
+  (setq buffer-file-name excorporate-org-buffer-name)
   (org-mode)
   (use-local-map (copy-keymap org-mode-map))
   (local-set-key "q" 'quit-window)