cvs commit: src/include histedit.h src/lib/libedit Makefile chared.c chared.h common.c editline.3 editrc.5 el.c el.h emacs.c hist.c hist.h history.c key.c key.h makelist map.c map.h parse.c parse.h prompt.c prompt.h read.c refresh.c refresh.h search.c ...

Stefan Farfeleder stefanf at FreeBSD.org
Sun Aug 7 21:14:22 GMT 2005


stefanf     2005-08-07 20:51:53 UTC

  FreeBSD src repository

  Modified files:
    include              histedit.h 
    lib/libedit          Makefile chared.c chared.h common.c 
                         editline.3 editrc.5 el.c el.h emacs.c 
                         hist.c hist.h history.c key.c key.h 
                         makelist map.c map.h parse.c parse.h 
                         prompt.c prompt.h read.c refresh.c 
                         refresh.h search.c search.h sig.c sig.h 
                         sys.h term.c term.h tokenizer.c tty.c 
                         tty.h vi.c 
    lib/libedit/TEST     test.c 
  Removed files:
    lib/libedit          tokenizer.h 
  Log:
  Sync libedit with recent NetBSD developments.  Including improvements to the
  vi-mode, removal of clause 3, cleanups and the export of the tokenization
  functions.
  
  Not included: config.h, filecomplete.{c,h}
  
  Revision  Changes    Path
  1.10      +38 -12    src/include/histedit.h
  1.30      +5 -3      src/lib/libedit/Makefile
  1.5       +58 -24    src/lib/libedit/TEST/test.c
  1.9       +205 -140  src/lib/libedit/chared.c
  1.7       +31 -23    src/lib/libedit/chared.h
  1.10      +92 -125   src/lib/libedit/common.c
  1.24      +174 -16   src/lib/libedit/editline.3
  1.18      +31 -5     src/lib/libedit/editrc.5
  1.12      +96 -31    src/lib/libedit/el.c
  1.6       +20 -15    src/lib/libedit/el.h
  1.9       +62 -42    src/lib/libedit/emacs.c
  1.6       +37 -24    src/lib/libedit/hist.c
  1.4       +4 -8      src/lib/libedit/hist.h
  1.8       +189 -69   src/lib/libedit/history.c
  1.10      +28 -22    src/lib/libedit/key.c
  1.4       +12 -11    src/lib/libedit/key.h
  1.9       +3 -7      src/lib/libedit/makelist
  1.10      +153 -157  src/lib/libedit/map.c
  1.4       +3 -7      src/lib/libedit/map.h
  1.10      +21 -17    src/lib/libedit/parse.c
  1.4       +3 -7      src/lib/libedit/parse.h
  1.6       +6 -10     src/lib/libedit/prompt.c
  1.3       +2 -6      src/lib/libedit/prompt.h
  1.12      +153 -62   src/lib/libedit/read.c
  1.10      +34 -22    src/lib/libedit/refresh.c
  1.3       +2 -6      src/lib/libedit/refresh.h
  1.10      +90 -106   src/lib/libedit/search.c
  1.4       +5 -9      src/lib/libedit/search.h
  1.7       +5 -9      src/lib/libedit/sig.c
  1.3       +4 -7      src/lib/libedit/sig.h
  1.5       +9 -10     src/lib/libedit/sys.h
  1.17      +42 -26    src/lib/libedit/term.c
  1.6       +14 -15    src/lib/libedit/term.h
  1.8       +88 -38    src/lib/libedit/tokenizer.c
  1.4       +0 -54     src/lib/libedit/tokenizer.h (dead)
  1.8       +139 -16   src/lib/libedit/tty.c
  1.5       +6 -10     src/lib/libedit/tty.h
  1.10      +495 -328  src/lib/libedit/vi.c


More information about the cvs-all mailing list