# HG changeset patch # User Richard M. Stallman # Date 1119019359 0 # Node ID f3ed2587aeccd062e2de8954c4022ae61376de04 # Parent d93100b97dcc8ba57cb1c8f4578ecb3edfe4b217 *** empty log message *** diff -r d93100b97dcc -r f3ed2587aecc etc/NEWS --- a/etc/NEWS Fri Jun 17 14:37:55 2005 +0000 +++ b/etc/NEWS Fri Jun 17 14:42:39 2005 +0000 @@ -3633,6 +3633,7 @@ *** `syntax-class' extracts the class of a syntax code (as returned by `syntax-after'). ++++ *** The new function `syntax-ppss' rovides an efficient way to find the current syntactic context at point. @@ -4926,6 +4927,7 @@ of hierarchical data as an outline. For example, the tree-widget is well suited to display a hierarchy of directories and files. ++++ ** The new library bindat.el provides functions to unpack and pack binary data structures, such as network packets, to and from Lisp data structures. diff -r d93100b97dcc -r f3ed2587aecc lisp/ChangeLog --- a/lisp/ChangeLog Fri Jun 17 14:37:55 2005 +0000 +++ b/lisp/ChangeLog Fri Jun 17 14:42:39 2005 +0000 @@ -1,3 +1,20 @@ +2005-06-17 Richard M. Stallman + + * term.el (term-get-old-input, term-input-filter, term-input-sender) + (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes. + + * longlines.el (longlines-mode, longlines-show-hard-newlines): + Doc fixes. + + * faces.el (underline): Try bold if terminal doesn't support underline. + + * mail/sendmail.el (mail-setup-with-from): New variable. + (mail-insert-from-field): New function. + (sendmail-send-it): Call it. + (mail-setup): Optionally call it here. + + * term/linux.el: Call tty-no-underline. + 2005-06-17 Luc Teirlinck * emacs-lisp/edebug.el (edebug-goto-here): Doc fix. diff -r d93100b97dcc -r f3ed2587aecc lispref/ChangeLog --- a/lispref/ChangeLog Fri Jun 17 14:37:55 2005 +0000 +++ b/lispref/ChangeLog Fri Jun 17 14:42:39 2005 +0000 @@ -1,3 +1,20 @@ +2005-06-17 Thien-Thi Nguyen + + * lists.texi (Rings): New node. + (Lists): Add it to menu. + + * processes.texi (Low-Level Network): New node. + (Processes): Add it to menu. + +2005-06-17 Richard M. Stallman + + * syntax.texi (Parsing Expressions): Fix texinfo usage. + + * help.texi (Documentation Basics): Explain the xref to + Documentation Tips. + + * debugging.texi (Debugger Commands): Minor fix. + 2005-06-16 Luc Teirlinck * edebug.texi (Instrumenting): Eliminate duplicate link. diff -r d93100b97dcc -r f3ed2587aecc man/ChangeLog --- a/man/ChangeLog Fri Jun 17 14:37:55 2005 +0000 +++ b/man/ChangeLog Fri Jun 17 14:42:39 2005 +0000 @@ -1,3 +1,7 @@ +2005-06-17 Richard M. Stallman + + * text.texi (Adaptive Fill): Minor clarification. + 2005-06-13 Carsten Dominik * org.texi: Version 3.11 diff -r d93100b97dcc -r f3ed2587aecc src/ChangeLog --- a/src/ChangeLog Fri Jun 17 14:37:55 2005 +0000 +++ b/src/ChangeLog Fri Jun 17 14:42:39 2005 +0000 @@ -4,7 +4,9 @@ test of Vshow_nonbreak_escape. * term.c (produce_special_glyphs): Use spec_glyph_lookup_face. - + (Ftty_no_underline): New function. + (syms_of_term): defsubr it. + * keyboard.c (read_char): Call restore_getcjmp after jump occurs. * dispnew.c (spec_glyph_lookup_face): New function.