ChangeLog 2011-01-17 (was: ChangeLog 2011-01-16)

2011-01-17 Thread Roland Winkler
On Mon Jan 17 2011 Philipp Haselwarter wrote:
> "RW" == Roland Winkler  writes:
> ---8<---[snipped 22 lines]---8<---
> 
> RW>   * lisp/Makefile: In bbdb-autloads.el, add BBDB lisp directory to
> RW> load-path.
> 
> ---8<---[snipped 18 lines]---8<---
> 
> You forgot to add -e to the echo to make it expand the \n into a
> newline.


2011-01-17  Roland Winkler  
* lisp/Makefile: Do not attempt to add empty line to
bbdb-autloads.el.

BBDB is avaiable at
http://cvs.savannah.gnu.org/viewvc/bbdb/?root=bbdb
To check it out, use
cvs -d:pserver:anonym...@cvs.sv.gnu.org:/sources/bbdb co bbdb

--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/


Re: ChangeLog 2011-01-16

2011-01-17 Thread Roland Winkler
On Mon Jan 17 2011 Philipp Haselwarter wrote:
> "RW" == Roland Winkler  writes:
> ---8<---[snipped 22 lines]---8<---
> 
> RW>   * lisp/Makefile: In bbdb-autloads.el, add BBDB lisp directory to
> RW> load-path.
> 
> ---8<---[snipped 18 lines]---8<---
> 
> You forgot to add -e to the echo to make it expand the \n into a
> newline.

Strange! I do not need the `-e' to expand \n properly. 
Will the `-e' work on all systems? Maybe it's more foolproof
to remove the \n. Then one need not worry whether things expand
properly or not.

Roland

--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/


Re: ChangeLog 2011-01-16

2011-01-17 Thread Philipp Haselwarter
"RW" == Roland Winkler  writes:
---8<---[snipped 22 lines]---8<---

RW> * lisp/Makefile: In bbdb-autloads.el, add BBDB lisp directory to
RW> load-path.

---8<---[snipped 18 lines]---8<---

You forgot to add -e to the echo to make it expand the \n into a
newline.

--- a/Makefile	2011-01-17 14:17:43.0 +0100
+++ b/Makefile	2011-01-17 14:25:50.843848813 +0100
@@ -89,7 +89,7 @@
 	@-$(RM) $@;
 	@echo "(provide 'bbdb-autoloads)" > $@;
 	@echo "(if (and load-file-name (file-name-directory load-file-name))" >> $@;
-	@echo "(add-to-list 'load-path (file-name-directory load-file-name)))\n" >> $@;
+	@echo -e "(add-to-list 'load-path (file-name-directory load-file-name)))\n" >> $@;
 	@echo "" >> $@;
 	@$(emacs) -batch -l autoload \
 		--eval '(setq generated-autoload-file "'`pwd`'/$@")' \



-- 
Philipp Haselwarter
--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/

ChangeLog 2011-01-16 (was: (error "Attempt to split minibuffer window"))

2011-01-16 Thread Roland Winkler
On Sat Jan 15 2011 Stefan Monnier wrote:
> > The spirit of the current approach in BBDB for displaying buffers is
> > still the one which I guess was implemented years ago. I guess the
> > above makes more sense. Yet implementing this properly might break
> > again some backward compatibility... (And it might take a little
> > while since I need to understand better how something like
> > special-display-regexp is supposed to work.)
> 
> No need for you to understand it: just fallback to display-buffer or
> pop-to-buffer if your current code fails.

The updated code should do that.

> > Do I understand correctly that the idea underlying your patch is
> > that the only file the user loads explicitly is bbdb-autoloads.el?
> 
> Yes.

Now loading bbdb-autoloads.el should be sufficient.

2011-01-16  Roland Winkler  
* README: Updated.

* lisp/Makefile: In bbdb-autloads.el, add BBDB lisp directory to
load-path.

* lisp/bbdb.el (bbdb-pop-up-buffer): Use condition-case, in case
split-window fails.
(bbdb-records, bbdb-mode, bbdb-version, bbdb-initialize): Add
autoload cookie.

BBDB is avaiable at
http://cvs.savannah.gnu.org/viewvc/bbdb/?root=bbdb
To check it out, use
cvs -d:pserver:anonym...@cvs.sv.gnu.org:/sources/bbdb co bbdb

--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/