*** empty log message ***
This commit is contained in:
parent
b1c609b18d
commit
295ccc644c
3 changed files with 44 additions and 60 deletions
|
@ -1,3 +1,7 @@
|
|||
1999-12-12 Gerd Moellmann <gerd@gnu.org>
|
||||
|
||||
* progmodes/cc-make.el: Removed.
|
||||
|
||||
1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
|
||||
|
||||
* Release of cc-mode 5.26
|
||||
|
|
|
@ -1,60 +0,0 @@
|
|||
;;; cc-make.el --- Simplifies compilation.
|
||||
|
||||
;; Copyright (C) 1985,87,92,93,94,95,96,97,98 Free Software Foundation, Inc.
|
||||
|
||||
;; Authors: 1998 Barry A. Warsaw and Martin Stjernholm
|
||||
;; 1997 Barry A. Warsaw
|
||||
;; Maintainer: bug-cc-mode@gnu.org
|
||||
;; Created: 22-Apr-1997 (split from cc-mode.el)
|
||||
;; Version: See cc-mode.el
|
||||
;; Keywords: c languages oop
|
||||
|
||||
;; This program is free software; you can redistribute it and/or modify
|
||||
;; it under the terms of the GNU General Public License as published by
|
||||
;; the Free Software Foundation; either version 2 of the License, or
|
||||
;; (at your option) any later version.
|
||||
|
||||
;; This program is distributed in the hope that it will be useful,
|
||||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
;; GNU General Public License for more details.
|
||||
|
||||
;; You should have received a copy of the GNU General Public License
|
||||
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
||||
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
;; Boston, MA 02111-1307, USA.
|
||||
|
||||
(defconst cc-path-to-the-custom-library
|
||||
;; In Emacs 19.34, change the following line to the directory that
|
||||
;; contains Per Abrahamsen's new Custom library, which you must
|
||||
;; download first. You can get Custom from:
|
||||
;;
|
||||
;; http://www.dina.kvl.dk/~abraham/custom/
|
||||
;;
|
||||
;; See the CC Mode homepage for installation details:
|
||||
;;
|
||||
;; http://www.python.org/emacs/cc-mode/
|
||||
nil
|
||||
)
|
||||
|
||||
(if cc-path-to-the-custom-library
|
||||
(setq load-path (cons cc-path-to-the-custom-library load-path)))
|
||||
|
||||
(if (not (and (condition-case nil
|
||||
(require 'custom)
|
||||
(error nil))
|
||||
;; Stock Emacs 19.34 doesn't have this
|
||||
(fboundp 'defcustom)))
|
||||
(error "STOP! STOP! STOP! STOP!
|
||||
|
||||
The Custom library was not found or is out of date. A more current
|
||||
version is required to use CC Mode 5. You MUST fix cc-make.el. See
|
||||
that file or the CC Mode Web site for details:
|
||||
|
||||
<http://www.python.org/emacs/cc-mode/"))
|
||||
|
||||
(setq load-path (cons default-directory load-path))
|
||||
|
||||
(batch-byte-compile)
|
||||
|
||||
;;; cc-make.el ends here
|
|
@ -1,3 +1,43 @@
|
|||
1999-12-12 Gerd Moellmann <gerd@gnu.org>
|
||||
|
||||
* cc-mode.texi: Set file name to ../info/cc-mode.texi.
|
||||
|
||||
1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
|
||||
|
||||
* cc-mode.texi: Documented the new up/down preprocessor
|
||||
conditional function varieties.
|
||||
|
||||
1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
|
||||
|
||||
* cc-mode.texi: Updated for all the new features and
|
||||
proofread. Major changes:
|
||||
o All text filling and line breaking issues is collected in a
|
||||
new top-level chapter. The section on auto-fill mode
|
||||
interaction have been incorporated into this.
|
||||
o The list of the standard lineup functions is expanded with
|
||||
better explanations and examples. It's moved to a
|
||||
top-level chapter since it's hard to find under Customizing
|
||||
Indentation / Advanced Customizations / Custom Indentation
|
||||
Functions.
|
||||
o The sections on Permanent Customization and Styles are
|
||||
mostly rewritten due to the changes in the style system.
|
||||
The part about the mode hooks has gotten an own section.
|
||||
|
||||
1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
|
||||
|
||||
* cc-mode.texi: Documented the default behavior when a symbol
|
||||
doesn't exist on c-hanging-braces-alist.
|
||||
|
||||
1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
|
||||
|
||||
* cc-mode.texi: Document the new semantics for c-default-style.
|
||||
|
||||
1999-12-12 Barry Warsaw <cc-mode-help@python.org>
|
||||
|
||||
* cc-mode.texi: Added a paragraph on
|
||||
signal-error-on-buffer-boundary in the Limitations and Known Bugs
|
||||
section.
|
||||
|
||||
1999-12-10 Jonathan Kamens <jik@kamens.brookline.ma.us>
|
||||
|
||||
* rmail.texi: POP server may be specified as part of the mailbox
|
||||
|
|
Loading…
Add table
Reference in a new issue