CVSROOT: /cvs Module name: src Changes by: schwa...@cvs.openbsd.org 2016/03/20 16:57:59
Modified files: lib/libedit : chared.c chared.h common.c el.c el.h eln.c emacs.c filecomplete.c hist.h makelist map.c parse.c prompt.h readline.c refresh.h search.c search.h sig.c sig.h terminal.h tty.c tty.h vi.c Log message: Cleanup of private header inclusion: 1. Do not include private headers from "chared.h", "hist.h", "prompt.h", "refresh.h", "search.h", "sig.h", "terminal.h", "tty.h". The only private header having to include other private headers is "el.h". 2. Do not include "common.h", "parse.h", "help.h" from "el.h", and do not include "emacs.h" and "vi.h" from "chared.h", include them directly where needed. 3. Do include "fcns.h" from "el.h" because el_func_t is needed for "map.h". 4. Do not include private headers again that are already included by "el.h". 5. Include private headers after standard headers. OK czarkoff@