Mercurial > emacs
view test/cedet/tests/testsppcomplete.c @ 107233:548e079ffb49
Fix initialization of send-mail-function option.
* mail/sendmail.el (send-mail-function): Autoload the call
to custom-initialize-delay, not otherwise preserved in loaddefs.el.
(Needed since 2009-09-13 change to startup.el.)
See http://lists.gnu.org/archive/html/emacs-devel/2010-02/msg00533.html
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Thu, 25 Feb 2010 20:40:03 -0800 |
parents | 7f4c7f5c0eba |
children | ef719132ddfa |
line wrap: on
line source
/* Example provided by Hannes Janetzek */ struct Test { int test; }; #define BLA(_type) \ _type *bla = (_type*) malloc(sizeof(_type)); #define BLUB(_type) \ (_type*)malloc(sizeof(_type)); #define FOO(_type) \ _type *foo = BLUB(_type); #define BAR(_type) \ _type *bar = (*_type)BLUB(_type); int main(int argc, char *argv[]) { BLA(Test); bla->// -1- ; // #1# ( "test" ) FOO(Test); foo->// -2- ; // #2# ( "test" ) BAR(Test); bar->// -3- ; // #3# ( "test" ) } /* arch-tag: f4a9fe26-9035-4378-b951-9f06d6554599 (do not change this comment) */