summaryrefslogtreecommitdiffstats
path: root/group.c
AgeCommit message (Collapse)Author
2020-02-28Create send.h header.Kevin McCarthy
This will hold the send context, so we may as well pull the prototypes into the header file too.
2018-12-31Remove trailing whitespace.Kevin McCarthy
The result of find . -name "*.[ch]" -exec emacs -batch {} \ --eval="(progn (delete-trailing-whitespace) (and (buffer-modified-p) (save-buffer)))" \;
2017-02-10Change "allow_dups" into a flag at hash creation.Kevin McCarthy
Instead of having an "allow_dups" parameter for hash_insert(), add a flag, MUTT_HASH_ALLOW_DUPS, to hash_create(). Currently ReverseAlias, subj_hash, and thread_hash allow duplicate keys. Change those hashes to pass the flag at creation, and remove the last parameter from all callers of hash_insert().
2009-07-28Fix some issues with ungroup [...] *Rocco Rutte
2009-07-23Implement ungroup command. Closes #3304.Rocco Rutte
2009-05-13Prune empty address groups when preparing replies. Closes #2875.Rocco Rutte
2008-12-16Remove unused #include directivesErik Hovland
2008-10-28Make some functions static.Emanuele Giaquinta
2006-05-18Avoid safe_free() usage and add security checksRocco Rutte
Add checks to check_sec.sh for memory functions. These include a check for use of safe_free() instead of FREE() and a check whether FREE(&...) is used. For the former, __SAFE_FREE_CHECKED__ is to be used, for the latter __FREE_CHECKED__ to avoid messages from check_sec.sh
2006-01-09Adding pattern group support; seeThomas Roessler
http://does-not-exist.org/mail-archives/mutt-dev/msg05693.html for instructions. The ungroup command is not yet implemented, and documentation is lacking.