I said: > I haven't found out how (again, short of hacking the layout functions) > to get back the blank line which used to be between each multi-line > record in the BBDB buffer. Could this be implemented as yet another > layout option?
I've got a simple workaround for this for now, which does what *I* want - to get blank lines separating the records in a full-multi-line layout. By default, the layout function for full-multi-line is defaliased to use the standard multi-line layout function - my replacement just calls it but adds a newline afterwards. ;; A way of getting blank lines between full multi-line layouts (defun bbdb-format-record-layout-full-multi-line (layout record field-list) "Formatting function for the 'full-multi-line' layout type. Behaves just like the standard multi-line layout function, but puts a blank line after the record." (bbdb-format-record-layout-multi-line layout record field-list) (insert "\n")) Patrick ------------------------------------------------------- This sf.net email is sponsored by: Influence the future of Java(TM) technology. Join the Java Community Process(SM) (JCP(SM)) program now. http://ads.sourceforge.net/cgi-bin/redirect.pl?sunm0004en _______________________________________________ [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/bbdb-info BBDB Home Page: http://bbdb.sourceforge.net/
