This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "ABLE".
The branch, master has been updated via b9975d3663bdb1fe9dcf725ae3cc156f6e4e4a36 (commit) via b4df7e32ed899ea6024454de147d377643ea38ed (commit) via a6246aaa087cacd7e9e211b31177ec6d5ebb8fe2 (commit) via 50f0e801f83187ae7f77024a66f058c205ac4b1e (commit) via d53341149c38afb2dba4b738f7dfd61ad520866e (commit) via 77e0a273bf4c00589993cb134afb35b2e9edc9fd (commit) via 2bfd88f0f81ef9c39e9d263a43c4077cfa7c2095 (commit) via 600896e49794dff88df81aa8bacd577ca2eb21da (commit) via 6adadb3bf20bb14ab79112b61671685489ee8c21 (commit) via 8928f81652d1f5ade98866ec3a68bd6c43906176 (commit) via c4727b06d2511b4e3e42d73d72ccf2d1a8931a19 (commit) via a78192c050c2012dc027614fc2ec7390952e6507 (commit) via bc29fe7d31ee65d0856194fd98b99e1ee4f4a5fe (commit) via e85fd729335dca418edcf1e19a6721727b066574 (commit) via e94c1b5f38172e57f3cd462ebb15e7b998caf6ab (commit) via 0774e1bb5ac1e9bf67ef6c526fe0aa5127efecc1 (commit) from 11e8af772760722a55c27fef89040547c6bcf21f (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit b9975d3663bdb1fe9dcf725ae3cc156f6e4e4a36 Author: D Herring dherring@at.tentpost.dot.com Date: Sun Jun 10 23:25:04 2012 +0900
fix a parameter declaration
commit b4df7e32ed899ea6024454de147d377643ea38ed Author: D Herring dherring@at.tentpost.dot.com Date: Fri Jun 8 01:37:07 2012 +0900
stop extra newlines problem when re-indenting code
complements the fix to ltk:save-text to strip Tk's extra newline at the end of the buffer
commit a6246aaa087cacd7e9e211b31177ec6d5ebb8fe2 Author: D Herring dherring@at.tentpost.dot.com Date: Mon May 14 00:29:37 2012 +0900
new commands to list and select open buffers
commit 50f0e801f83187ae7f77024a66f058c205ac4b1e Author: D Herring dherring@at.tentpost.dot.com Date: Sun May 13 22:58:20 2012 +0900
add menu options for file browser open/save
commit d53341149c38afb2dba4b738f7dfd61ad520866e Author: D Herring dherring@at.tentpost.dot.com Date: Sun May 13 22:08:17 2012 +0900
fix a DOLIST bug found on clisp
commit 77e0a273bf4c00589993cb134afb35b2e9edc9fd Author: D Herring dherring@at.tentpost.dot.com Date: Thu Nov 17 23:58:05 2011 -0500
don't rebind debug I/O streams
Now stuff like (break) has a chance of working inside ABLE's listener. This change shouldn't affect normal user code.
commit 2bfd88f0f81ef9c39e9d263a43c4077cfa7c2095 Author: D Herring dherring@at.tentpost.dot.com Date: Wed Nov 16 02:02:55 2011 -0500
reload buffers when restarting ABLE within the same CL session
idea thanks to Junia Magalhães
commit 600896e49794dff88df81aa8bacd577ca2eb21da Author: D Herring dherring@at.tentpost.dot.com Date: Wed Nov 16 01:13:59 2011 -0500
add a command to invoke the native debugger
commit 6adadb3bf20bb14ab79112b61671685489ee8c21 Author: D Herring dherring@at.tentpost.dot.com Date: Sat Nov 12 02:21:12 2011 -0500
fix repl code completion (broke when refactoring key bindings)
commit 8928f81652d1f5ade98866ec3a68bd6c43906176 Author: D Herring dherring@at.tentpost.dot.com Date: Thu Nov 10 23:28:26 2011 -0500
put the rest of the key bindings in the menu
commit c4727b06d2511b4e3e42d73d72ccf2d1a8931a19 Author: D Herring dherring@at.tentpost.dot.com Date: Thu Nov 10 23:19:59 2011 -0500
user-stream bugfix
Under SBCL, floating-point numbers were printing incorrectly. e.g. (format t "~A" 12.34) was printing 12.1234! The equivalent string literals were ok.
Investigation found that SBCL prints floats as (write-string "1234" 0 3) (write-char #.) (write-string "1234" 3 nil) This last call was incorrectly handled by the IF. I assume it was meant as an optimization...
commit a78192c050c2012dc027614fc2ec7390952e6507 Author: D Herring dherring@at.tentpost.dot.com Date: Wed Nov 9 00:26:03 2011 -0500
refactor more key bindings
commit bc29fe7d31ee65d0856194fd98b99e1ee4f4a5fe Author: D Herring dherring@at.tentpost.dot.com Date: Mon Nov 7 23:59:10 2011 -0500
list many of the key bindings in the menu
commit e85fd729335dca418edcf1e19a6721727b066574 Author: D Herring dherring@at.tentpost.dot.com Date: Mon Nov 7 00:38:54 2011 -0500
indentation bugfix and fix related warnings
Eduardo Costa reported the error when indenting a form like (defvar test '( asdf ; note space after left paren ;ltk error on this line
Basic idea is to make the tokenizer skip leading whitespace. Probably only slightly more robust than the previous code.
commit e94c1b5f38172e57f3cd462ebb15e7b998caf6ab Author: D Herring dherring@at.tentpost.dot.com Date: Sun Nov 6 22:39:00 2011 -0500
restore paren matching in the file editor and background colors
These were incorrectly disabled; they appear to be compatible with TTk.
commit 0774e1bb5ac1e9bf67ef6c526fe0aa5127efecc1 Author: D Herring dherring@at.tentpost.dot.com Date: Sun Nov 6 22:08:24 2011 -0500
tweak the web browser detection
- don't clutter *features* - make sure *web-browser* is always in a proper defparameter form
This could use some more robust code (e.g. a probe-file or the like) or at least better platform detection.
-----------------------------------------------------------------------
Summary of changes: config.lisp | 17 +++- controls.lisp | 1 + defpackage.lisp | 19 ----- macros.lisp | 7 +- main.lisp | 244 +++++++++++++++++++++++++++++++++++++++++------------- utils.lisp | 6 +- 6 files changed, 210 insertions(+), 84 deletions(-)
hooks/post-receive