Mercurial > hg > xemacs-beta
diff lisp/ChangeLog @ 177:6075d714658b r20-3b15
Import from CVS: tag r20-3b15
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:51:16 +0200 |
parents | 2d532a89d707 |
children | 9ad43877534d |
line wrap: on
line diff
--- a/lisp/ChangeLog Mon Aug 13 09:50:16 2007 +0200 +++ b/lisp/ChangeLog Mon Aug 13 09:51:16 2007 +0200 @@ -1,3 +1,167 @@ +Sat Jul 26 12:24:20 1997 Barry A. Warsaw <cc-mode-help@python.org> + + * cc-mode/ Release 5.14 + +Sat Jul 26 16:03:33 1997 Barry A. Warsaw <cc-mode-help@python.org> + + * cc-mode/cc-styles.el (c-styles-alist): + In "java" style, set c-hanging-comment-starter-p to + nil to preserve Javadoc starter lines. + +Fri Jul 25 22:17:07 1997 Barry A. Warsaw <cc-mode-help@python.org> + + * cc-mode/cc-engine.el (c-beginning-of-statement-1): + When checking for bare semi, don't match + on a semi following a close brace, otherwise the following legal code + fails: + + void foo() + { + static struct Pattern nums + = {1, 2, 3}; + + int j = 2; + } + + This might break some bare semi idioms but those are probably more + rare than static initializers. + + * cc-mode/cc-vars.el (idl-mode-hook): New variable. + + * cc-mode/cc-mode.el (idl-mode): Support for CORBA's IDL language. + + * cc-mode/idl-font-lock.el: Unsupported font-lock definitions for IDL. + This should be merged in with font-lock.el + + * cc-mode/cc-mode.el (c-initialize-cc-mode): + move the calling of c-make-styles-buffer-local + into c-initialize-builtin-style. + + * cc-mode/cc-styles.el (c-set-style-2): + Fixed broken implementation of inherited styles. + + * cc-mode.texi: + Document c-initialization-hook. Also rewrite the "Getting Connected" + section on byte compiling the source. + + * cc-mode/cc-mode.el (c-initialize-cc-mode): + Run the c-initialization-hook, but only once + per Emacs session. + + * cc-mode/cc-vars.el (c-initialization-hook): New variable. + + * cc-mode/cc-engine.el (c-guess-basic-syntax): + CASE 5I: When adding 'inclass syntax, use the + relpos pointing to the class opening brace, unless that hangs on the + right side, in which case, use the start of the class/struct keyword. + +Thu Jul 17 03:36:22 1997 Barry A. Warsaw <cc-mode-help@python.org> + + * cc-mode/cc-langs.el (c-symbol-key): + first character must be a letter or underscore + +1997-07-25 SL Baur <steve@altair.xemacs.org> + + * packages/vc.el (vc-version-diff): Autoload for the menu. + Suggested by Karl M. Hegbloom <karlheg+xemacs@inetarena.com> + +1997-07-24 SL Baur <steve@altair.xemacs.org> + + * prim/make-docfile.el (docfile-out-of-date): Workaround for NEWOS + process exit handling bug. + Suggested by Katsumi Yamaoka <yamaoka@ga.sony.co.jp> + +1997-07-23 Karl M. Hegbloom <karlheg@inetarena.com> + + * packages/info.el: (Info-fontify-node) Allow colons in menu + names. There must be whitespace following the menu ending colon. + +1997-07-23 SL Baur <steve@altair.xemacs.org> + + * prim/faces.el (invert-face): Make interactive. + Suggested by David Bakhash <cadet@sst.ll.mit.edu> + +1997-07-21 Karl M. Hegbloom <karlheg@inetarena.com> + + * modes/view-process-system-specific.el added + `View-process-field-name-descriptions-linux', transcribed from + man 7 ps_fields. Linux signals fixed to match <asm/signal.h>. + +1997-07-22 SL Baur <steve@altair.xemacs.org> + + * x11/x-toolbar.el (toolbar-paste-function): Add default as + option. + + * prim/minibuf.el (force-dialog-box-use): Fix typo. + From Pekka Marjola <pema@iki.fi> + +1997-07-21 SL Baur <steve@altair.xemacs.org> + + * prim/packages.el (locate-data-directory): New function to search + for directories in the data-directory-list. + +1997-07-21 Karl M. Hegbloom <karlheg@inetarena.com> + + * prim/minibuf.el: New customize variable: + `minibuffer-history-uniquify' + (read-from-minibuffer) Only remove histval from list if + minibuffer-history-uniquify is t. + + * custom/custom.el: Fix typo in (defgroup) docstring. + +1997-07-21 SL Baur <steve@altair.xemacs.org> + + * prim/startup.el (set-default-load-path): Initialize package + paths as final step if everything else went O.K. + + * prim/help.el: Removed locate-library (moved to packages.el). + + * prim/subr.el: Removed lamda macro (moved to packages.el). + + * prim/packages.el (package-find-packages): New function. Search + package hierarchies for interesting directories. + (package-find-packages-1): Helper function for the above. Do the + searching in exactly 1 directory. + + * packages/vc.el: Add ClearCase maintainer. + +1997-07-21 Karl M. Hegbloom <karlheg@inetarena.com> + + * modes/whitespace-mode.el (toplevel) Install toolbar button using + `toolbar-add-item' rather than redefining the whole default + toolbar. If the button is already there, does nothing, so a + custom toolbar containing a whitespace button can made with + `edit-toolbar' once it's been installed the first time. + +1997-07-20 SL Baur <steve@altair.xemacs.org> + + * utils/speedbar.el: + (speedbar-frame-mode): Autoload. + (speedbar-get-focus): Autoload. + (speedbar): Autoload (correctly). + + (speedbar-frame-width): Test liveness of frame + too. + (speedbar-frame-mode): Avoid some Emacs 20 code. + From Markus Linnala <maage@cs.tut.fi> + + * prim/startup.el (find-emacs-root-internal): Search + prefix-directory directly for XEmacs installed stuffs. + + * utils/smtpmail.el (smtpmail-send-it): Autoload. + + * prim/startup.el (command-line): Put advisory text in *scratch* + at startup. + + * packages/info.el (Info-exit): Guard against deletion of only + frame. + From David Bakhash <cadet@MIT.EDU> + +1997-07-19 SL Baur <steve@altair.xemacs.org> + + * utils/elp.el: Spelling correction. + From karlheg+xemacs@inetarena.com (Karl M. Hegbloom) + 1997-07-19 Steven L Baur <steve@altair.xemacs.org> * prim/about.el: Sundry changes.