From: Stefan Monnier Date: Thu, 29 Nov 2001 02:28:17 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: ttn-vms-21-2-B4~18049 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3ce081f5740ef90936af96609323552359bb276e;p=emacs.git *** empty log message *** --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3eef5436502..cfbdcf19d11 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,43 @@ +2001-11-28 Stefan Monnier + + * textmodes/outline.el (outline-up-heading): Add `invisible-ok' arg. + (outline-up-heading-all): Remove. + (hide-sublevels): Move to end-of-heading before calling flag-region. + (outline-copy-overlay, outline-discard-overlays): Remove. + (outline-flag-region): Use `remove-overlays'. + Don't move to end-of-heading. + (outline-next-visible-heading, outline-back-to-heading) + (outline-on-heading-p): Use outline-invisible-p. + (outline-font-lock-level): Use outline-up-heading's new arg. + (outline-minor-mode): Simplify. + (outline-map-tree, outline-reveal-toggle-invisible): New funs. + (outline): Put a `reveal-toggle-invisible' property. + (outline-level-heading): New var. + (outline-insert-heading, outline-promote, outline-demote) + (outline-toggle-children): New commands. + + * progmodes/hideif.el (hif-end-of-line): New function. + (hide-ifdef-mode): Set line-move-ignore-invisible. + (hide-ifdef-region-internal): New function. + (hide-ifdef-region): Use it. + (hif-defined): Return an integer. + (hif-infix-to-prefix): Remove. + (hif-tokenize): Parse from the buffer rather than from a string. + Correctly tokenize integers. Use forward-comment. + (hif-expr): Use hif-or. + (hif-term): Use hif-and. + (hif-factor): Use hif-not. Handle numbers properly. + Don't require parenthesis around `defined's argument. + (hif-and, hif-or, hif-not): New funs. + (hif-canonicalize): Pass a region to hif-tokenize. Use hif-not. + (hif-hide-line): Don't hide the \n before the line. + (hif-possibly-hide): Correctly handle numeric evaluation results. + + * progmodes/make-mode.el: Use line-(end|beginning)-position. + (makefile-mode): Set indent-line-function. + (makefile-browser-insert-continuation): Use with-current-buffer. + (makefile-beginning-of-line-point, makefile-end-of-line-point): Remove. + 2001-11-28 Karl Fogel * isearch.el (isearch-yank-internal): New helper function. diff --git a/src/ChangeLog b/src/ChangeLog index 7372afe9719..41a7e141b46 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2001-11-28 Stefan Monnier + + * category.c (describe_category, describe_category_1) + (Fdescribe_categories): Remove. + (syms_of_category): Don't defsubr Sdescribe_categories. + 2001-11-28 Richard M. Stallman * fileio.c (Ffind_file_name_handler): Avoid initializer for `result'. @@ -35,8 +41,17 @@ * xdisp.c (message_dolog): Remove unused variables `gcpro2', `gcpro3' and `gcpro4'. - * coding.c (decode_coding_string): Remove unused variable - `gcpro1'. + * coding.c (decode_coding_string): Remove unused variable `gcpro1'. + +2001-11-28 Stefan Monnier + + * ccl.c: Use AREF and ASIZE. + +2001-11-27 Stefan Monnier + + * lisp.h (run_hook_list_with_args): Remove. + (LIST_END_P): Fix call to wrong_type_argument. + (make_fixnum_or_float): Use EMACS_INT rather than int. 2001-11-26 Stefan Monnier