[elpa] 01/01: ascii-art-to-unicode.el (aa2u-replacement): Use cl-case instead of case.
schwab pushed a commit to branch master in repository elpa. commit aaa1b6d59f6663502185df73c2b809ca1846b5a5 Author: Andreas Schwab Date: Sun May 11 10:33:13 2014 +0200 ascii-art-to-unicode.el (aa2u-replacement): Use cl-case instead of case. --- .../ascii-art-to-unicode/ascii-art-to-unicode.el |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/packages/ascii-art-to-unicode/ascii-art-to-unicode.el b/packages/ascii-art-to-unicode/ascii-art-to-unicode.el index c79245c..a4cdf6d 100644 --- a/packages/ascii-art-to-unicode/ascii-art-to-unicode.el +++ b/packages/ascii-art-to-unicode/ascii-art-to-unicode.el @@ -151,7 +151,7 @@ Their values are STRINGIFIER and COMPONENTS, respectively." ;; | +---| (eq ?+ (char-after pos)) ;; Require properly directional neighborliness. -(memq (case name +(memq (cl-case name ((UP DOWN)'VERTICAL) ((LEFT RIGHT) 'HORIZONTAL)) (get-text-property pos 'aa2u-components)))
[elpa] branch master updated (52575a7 -> aaa1b6d)
schwab pushed a change to branch master in repository elpa. from 52575a7 Update copyright_exceptions new aaa1b6d ascii-art-to-unicode.el (aa2u-replacement): Use cl-case instead of case. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: .../ascii-art-to-unicode/ascii-art-to-unicode.el |2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
[elpa] 01/01: [aa2u] New command: aa2u-rectangle
ttn pushed a commit to branch master in repository elpa. commit 90819824596633b8684f220524298138003718df Author: Thien-Thi Nguyen Date: Sun May 11 13:32:42 2014 +0200 [aa2u] New command: aa2u-rectangle * packages/ascii-art-to-unicode/ascii-art-to-unicode.el (aa2u-rectangle): New command. --- packages/ascii-art-to-unicode/NEWS |1 + .../ascii-art-to-unicode/ascii-art-to-unicode.el | 17 - 2 files changed, 17 insertions(+), 1 deletions(-) diff --git a/packages/ascii-art-to-unicode/NEWS b/packages/ascii-art-to-unicode/NEWS index ae86a66..3c1452e 100644 --- a/packages/ascii-art-to-unicode/NEWS +++ b/packages/ascii-art-to-unicode/NEWS @@ -4,6 +4,7 @@ See the end for copying conditions. - 1.7 | NOT YET RELEASED - new var: ‘aa2u-uniform-weight’ + - new command: ‘aa2u-rectangle’ - 1.6 | 2014-05-09 - fix regression for interactive invocation w/o active region diff --git a/packages/ascii-art-to-unicode/ascii-art-to-unicode.el b/packages/ascii-art-to-unicode/ascii-art-to-unicode.el index a4cdf6d..ea7ea86 100644 --- a/packages/ascii-art-to-unicode/ascii-art-to-unicode.el +++ b/packages/ascii-art-to-unicode/ascii-art-to-unicode.el @@ -22,6 +22,7 @@ ;; The command `aa2u' converts simple ASCII art line drawings in ;; the {active,accessible} region of the current buffer to Unicode. +;; Command `aa2u-rectangle' is like `aa2u', but works on rectangles. ;; ;; Example use case: ;; - M-x artist-mode RET @@ -206,7 +207,7 @@ Their values are STRINGIFIER and COMPONENTS, respectively." 'aa2u-components nil))) ;;;--- -;;; command +;;; commands ;;;###autoload (defun aa2u (beg end &optional interactive) @@ -257,6 +258,20 @@ or the accessible portion otherwise." (aa2u-phase-2) (aa2u-phase-3 +;;;###autoload +(defun aa2u-rectangle (start end) + "Like `aa2u' on the region-rectangle. +When called from a program the rectangle's corners +are START (top left) and END (bottom right)." + (interactive "r") + (let* ((was (delete-extract-rectangle start end)) + (now (with-temp-buffer +(insert-rectangle was) +(aa2u (point) (mark)) +(extract-rectangle (point-min) (point-max) +(goto-char (min start end)) +(insert-rectangle now))) + ;;;--- ;;; that's it
[elpa] branch master updated (aaa1b6d -> 9081982)
ttn pushed a change to branch master in repository elpa. from aaa1b6d ascii-art-to-unicode.el (aa2u-replacement): Use cl-case instead of case. new 9081982 [aa2u] New command: aa2u-rectangle The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: packages/ascii-art-to-unicode/NEWS |1 + .../ascii-art-to-unicode/ascii-art-to-unicode.el | 17 - 2 files changed, 17 insertions(+), 1 deletions(-)
[elpa] 01/01: [aa2u] Release: 1.7
ttn pushed a commit to branch master in repository elpa. commit 386a3b0923a19714e2238288c0c9ed44a3ba3329 Author: Thien-Thi Nguyen Date: Sun May 11 13:52:45 2014 +0200 [aa2u] Release: 1.7 * packages/ascii-art-to-unicode/ascii-art-to-unicode.el [Version]: Bump to "1.7". --- packages/ascii-art-to-unicode/NEWS |3 ++- .../ascii-art-to-unicode/ascii-art-to-unicode.el |2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/ascii-art-to-unicode/NEWS b/packages/ascii-art-to-unicode/NEWS index 3c1452e..9280cfb 100644 --- a/packages/ascii-art-to-unicode/NEWS +++ b/packages/ascii-art-to-unicode/NEWS @@ -2,9 +2,10 @@ NEWS for ascii-art-to-unicode.el See the end for copying conditions. -- 1.7 | NOT YET RELEASED +- 1.7 | 2014-05-11 - new var: ‘aa2u-uniform-weight’ - new command: ‘aa2u-rectangle’ + - HACKING and Tip Jar links in Commentary - 1.6 | 2014-05-09 - fix regression for interactive invocation w/o active region diff --git a/packages/ascii-art-to-unicode/ascii-art-to-unicode.el b/packages/ascii-art-to-unicode/ascii-art-to-unicode.el index ea7ea86..4ea7855 100644 --- a/packages/ascii-art-to-unicode/ascii-art-to-unicode.el +++ b/packages/ascii-art-to-unicode/ascii-art-to-unicode.el @@ -3,7 +3,7 @@ ;; Copyright (C) 2014 Free Software Foundation, Inc. ;; Author: Thien-Thi Nguyen -;; Version: 1.6 +;; Version: 1.7 ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by
[elpa] branch master updated (9081982 -> 386a3b0)
ttn pushed a change to branch master in repository elpa. from 9081982 [aa2u] New command: aa2u-rectangle new 386a3b0 [aa2u] Release: 1.7 The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: packages/ascii-art-to-unicode/NEWS |3 ++- .../ascii-art-to-unicode/ascii-art-to-unicode.el |2 +- 2 files changed, 3 insertions(+), 2 deletions(-)
[elpa] branch externals/rudel updated (1315b23 -> 5e4f147)
monnier pushed a change to branch externals/rudel in repository elpa. from 1315b23 Made rudel icon directory configurable at runtime Patch by ulm; can be found here: https://overlays.gentoo.org/proj/emacs/browser/emacs-overlay/app-emacs/rudel/files/rudel-0.3_pre20110405-icons-dir.patch?rev=1661 * rudel-icons.el (header): updated copyright (rudel-icons-directory): use `defvar' instead of `defconst' (rudel-defimage): dynamically bind `image-load-path' to the value `rudel-icons-directory' new 5e4f147 Fix up headers and compilation The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: .bzrignore |4 +- adopted/adopted-compound.el|2 +- adopted/adopted-delete.el |2 +- adopted/adopted-insert.el |2 +- adopted/adopted-nop.el |2 +- adopted/adopted-operation.el |2 +- adopted/adopted.el |2 +- infinote/rudel-infinote-client.el |2 +- infinote/rudel-infinote-display.el |2 +- infinote/rudel-infinote-document.el|2 +- infinote/rudel-infinote-errors.el |2 +- infinote/rudel-infinote-group-directory.el |2 +- infinote/rudel-infinote-group-document.el |2 +- infinote/rudel-infinote-group-text-document.el |2 +- infinote/rudel-infinote-group.el |2 +- infinote/rudel-infinote-node-directory.el |2 +- infinote/rudel-infinote-node.el|2 +- infinote/rudel-infinote-state.el |2 +- infinote/rudel-infinote-text-document.el |2 +- infinote/rudel-infinote-user.el|2 +- infinote/rudel-infinote-util.el|2 +- infinote/rudel-infinote.el |8 +- jupiter/jupiter-compound.el|2 +- jupiter/jupiter-delete.el |2 +- jupiter/jupiter-insert.el |2 +- jupiter/jupiter-nop.el |2 +- jupiter/jupiter-operation.el |2 +- jupiter/jupiter.el |2 +- obby/rudel-obby-client.el |2 +- obby/rudel-obby-debug.el |2 +- obby/rudel-obby-display.el |2 +- obby/rudel-obby-errors.el |2 +- obby/rudel-obby-server.el |2 +- obby/rudel-obby-state.el |2 +- obby/rudel-obby-util.el|2 +- obby/rudel-obby.el |8 +- rudel-backend.el | 15 ++-- rudel-chat.el |2 +- rudel-color.el |3 +- rudel-compat.el|3 +- rudel-compile.el | 100 rudel-debug.el |2 +- rudel-display.el |2 +- rudel-errors.el|2 +- rudel-hooks.el |2 +- rudel-icons.el |5 +- rudel-interactive.el | 19 +++-- rudel-mode.el | 13 ++- rudel-operations.el|2 +- rudel-operators.el |2 +- rudel-overlay.el |5 +- rudel-protocol.el |2 +- rudel-session-initiation.el| 13 ++-- rudel-speedbar.el |4 +- rudel-state-machine.el |5 +- rudel-transport-util.el|6 +- rudel-transport.el |2 +- rudel-util.el |5 +- rudel-xml.el |3 +- rudel.el | 15 +++- socket/rudel-socket.el |6 +- telepathy/rudel-telepathy.el |6 +- tls/rudel-tls.el |6 +- wave/rudel-wave.el |6 +- xmpp/rudel-xmpp-debug.el |2 +- xmpp/rudel-xmpp-sasl.el|2 +- xmpp/rudel-xmpp-state.el |2 +- xmpp/rudel-xmpp-tls.el |2 +- xmpp/rudel-xmpp-tunnel.el |4 +- xmpp/rudel-xmpp-util.el|2 +- xmpp/rudel-xmpp.el |6 +- zeroconf/rudel-zeroconf.e
[elpa] 01/01: Fix up headers and compilation
monnier pushed a commit to branch externals/rudel in repository elpa. commit 5e4f147f6b23c392505cb0cbb5f13384d6d96304 Author: Stefan Monnier Date: Mon May 12 02:23:00 2014 -0400 Fix up headers and compilation --- .bzrignore |4 +- adopted/adopted-compound.el|2 +- adopted/adopted-delete.el |2 +- adopted/adopted-insert.el |2 +- adopted/adopted-nop.el |2 +- adopted/adopted-operation.el |2 +- adopted/adopted.el |2 +- infinote/rudel-infinote-client.el |2 +- infinote/rudel-infinote-display.el |2 +- infinote/rudel-infinote-document.el|2 +- infinote/rudel-infinote-errors.el |2 +- infinote/rudel-infinote-group-directory.el |2 +- infinote/rudel-infinote-group-document.el |2 +- infinote/rudel-infinote-group-text-document.el |2 +- infinote/rudel-infinote-group.el |2 +- infinote/rudel-infinote-node-directory.el |2 +- infinote/rudel-infinote-node.el|2 +- infinote/rudel-infinote-state.el |2 +- infinote/rudel-infinote-text-document.el |2 +- infinote/rudel-infinote-user.el|2 +- infinote/rudel-infinote-util.el|2 +- infinote/rudel-infinote.el |8 +- jupiter/jupiter-compound.el|2 +- jupiter/jupiter-delete.el |2 +- jupiter/jupiter-insert.el |2 +- jupiter/jupiter-nop.el |2 +- jupiter/jupiter-operation.el |2 +- jupiter/jupiter.el |2 +- obby/rudel-obby-client.el |2 +- obby/rudel-obby-debug.el |2 +- obby/rudel-obby-display.el |2 +- obby/rudel-obby-errors.el |2 +- obby/rudel-obby-server.el |2 +- obby/rudel-obby-state.el |2 +- obby/rudel-obby-util.el|2 +- obby/rudel-obby.el |8 +- rudel-backend.el | 15 ++-- rudel-chat.el |2 +- rudel-color.el |3 +- rudel-compat.el|3 +- rudel-compile.el | 100 rudel-debug.el |2 +- rudel-display.el |2 +- rudel-errors.el|2 +- rudel-hooks.el |2 +- rudel-icons.el |5 +- rudel-interactive.el | 19 +++-- rudel-mode.el | 13 ++- rudel-operations.el|2 +- rudel-operators.el |2 +- rudel-overlay.el |5 +- rudel-protocol.el |2 +- rudel-session-initiation.el| 13 ++-- rudel-speedbar.el |4 +- rudel-state-machine.el |5 +- rudel-transport-util.el|6 +- rudel-transport.el |2 +- rudel-util.el |5 +- rudel-xml.el |3 +- rudel.el | 15 +++- socket/rudel-socket.el |6 +- telepathy/rudel-telepathy.el |6 +- tls/rudel-tls.el |6 +- wave/rudel-wave.el |6 +- xmpp/rudel-xmpp-debug.el |2 +- xmpp/rudel-xmpp-sasl.el|2 +- xmpp/rudel-xmpp-state.el |2 +- xmpp/rudel-xmpp-tls.el |2 +- xmpp/rudel-xmpp-tunnel.el |4 +- xmpp/rudel-xmpp-util.el|2 +- xmpp/rudel-xmpp.el |6 +- zeroconf/rudel-zeroconf.el |8 +- 72 files changed, 145 insertions(+), 225 deletions(-) diff --git a/.bzrignore b/.bzrignore index 58a1d5c..a36190d 100644 --- a/.bzrignore +++ b/.bzrignore @@ -1,5 +1,7 @@ +*~ *.elc Makefile -rudel-loaddefs.el +rudel-pkg.el +rudel-autoloads.el *.log doc/auto diff --git a/adopted/adopted-compound.el b/adopted/adopted-compound.el index 02f8d98..e710076 100644 --- a/adopted/adopted-compound.el +++ b/adopted/adopted-compound.el @@ -1,6 +1,6 @@ ;;; adopted-compound.el --- Adopted compound operation ;; -;; Copyright (C) 2009, 2010 Jan Moringen +;; Copyright (C)
[elpa] 01/02: Add "rudel" to the list of externals.
monnier pushed a commit to branch master in repository elpa. commit 96db8a5b307d95719b7cd2886d82376bfd1f74c8 Author: Stefan Monnier Date: Mon May 12 02:27:31 2014 -0400 Add "rudel" to the list of externals. --- GNUmakefile |2 +- copyright_exceptions |1 + externals-list |1 + packages/lmc/lmc.el |2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index eb3ce43..4df319d 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -132,7 +132,7 @@ elcs := $(call SET-diff, $(naive_elcs), $(patsubst %.el, %.elc, $(nbc_els))) @echo 'Byte compiling $<' @$(EMACS) \ --eval "(setq package-directory-list nil package-user-dir \"$(abspath packages)\")" \ - --eval '(package-initialize)' \ + -f package-initialize \ -L $(dir $@) -f batch-byte-compile $< .PHONY: elcs diff --git a/copyright_exceptions b/copyright_exceptions index 9df761a..8775a94 100644 --- a/copyright_exceptions +++ b/copyright_exceptions @@ -57,6 +57,7 @@ ./auctex/tex-info.el: '("copyright" nil) ./gnugo/gnugo.el:(CP "Copyright" game simpletext) ./muse/htmlize-hack.el +./rudel/rudel-loaddefs.el ./uni-confusables/gen-confusables.el:;; Copyright (C) 1991-2009, 2010 Unicode, Inc. ./uni-confusables/gen-confusables.el:;; for the copyright and permission notice. ./uni-confusables/uni-confusables.el diff --git a/externals-list b/externals-list index 6c9e021..8f0d731 100644 --- a/externals-list +++ b/externals-list @@ -32,6 +32,7 @@ ("ioccur" :subtree "https://github.com/thierryvolpiatto/ioccur.git";) ("js2-mode" :subtree "https://github.com/mooz/js2-mode.git";) ;;FIXME:("org":external ??) ;; Need to introduce snapshots!! + ("rudel" :external "bzr::bzr://rudel.bzr.sourceforge.net/bzrroot/rudel/trunk") ("temp-buffer-browse" :subtree "https://github.com/leoliu/temp-buffer-browse";) ;;FIXME:("vlf":subtree ??) ("w3" :external nil) diff --git a/packages/lmc/lmc.el b/packages/lmc/lmc.el index 482e14a..db059d0 100644 --- a/packages/lmc/lmc.el +++ b/packages/lmc/lmc.el @@ -363,7 +363,7 @@ Also, when nil, evaluation is interrupted when the user hits a key.") (make-variable-buffer-local 'lmc-pc) (defvar lmc-acc nil "LMC accumulator.") (make-variable-buffer-local 'lmc-acc) -(defvar lmc-output nil "Past LMC output,") +(defvar lmc-output nil "Past LMC output.") (make-variable-buffer-local 'lmc-output) (defvar lmc--stopped nil "State where we stopped.")
[elpa] 02/02: Merge branch 'master' of git+ssh://git.sv.gnu.org/srv/git/emacs/elpa
monnier pushed a commit to branch master in repository elpa. commit 0403ce538c34d1393ac5c0f4ea67089c21e40f7b Merge: 96db8a5 386a3b0 Author: Stefan Monnier Date: Mon May 12 02:27:50 2014 -0400 Merge branch 'master' of git+ssh://git.sv.gnu.org/srv/git/emacs/elpa packages/ascii-art-to-unicode/NEWS |4 ++- .../ascii-art-to-unicode/ascii-art-to-unicode.el | 21 +-- 2 files changed, 21 insertions(+), 4 deletions(-)
[elpa] branch master updated (386a3b0 -> 0403ce5)
monnier pushed a change to branch master in repository elpa. from 386a3b0 [aa2u] Release: 1.7 new 96db8a5 Add "rudel" to the list of externals. new 0403ce5 Merge branch 'master' of git+ssh://git.sv.gnu.org/srv/git/emacs/elpa The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: GNUmakefile |2 +- copyright_exceptions |1 + externals-list |1 + packages/lmc/lmc.el |2 +- 4 files changed, 4 insertions(+), 2 deletions(-)
[elpa] branch master updated (0403ce5 -> f0911f5)
monnier pushed a change to branch master in repository elpa. from 0403ce5 Merge branch 'master' of git+ssh://git.sv.gnu.org/srv/git/emacs/elpa new f0911f5 * .gitignore: Add "rudel". The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: .gitignore |5 - 1 files changed, 4 insertions(+), 1 deletions(-)
[elpa] 01/01: * .gitignore: Add "rudel".
monnier pushed a commit to branch master in repository elpa. commit f0911f5960169159d389f88ad62432c56350c54c Author: Stefan Monnier Date: Mon May 12 02:55:26 2014 -0400 * .gitignore: Add "rudel". --- .gitignore |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/.gitignore b/.gitignore index e65f02f..d77751f 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,9 @@ ChangeLog core packages/*/*-autoloads.el packages/*/*-pkg.el + +# External packages with their own .git tree. +packages/auctex packages/dismal +packages/rudel packages/w3 -packages/auctex