Skip to content

Commit

Permalink
Latest changes for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
berndl committed Jan 31, 2003
1 parent 34cd51c commit 7eebb16
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 13 deletions.
12 changes: 10 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ clean:

$(ecb_INFO_DIR)/$(ecb_INFO): online-help

# updates RELEASE_NOTES, README, HISTORY and ecb.el to the version-number
# of $(ecb_VERSION).
# updates RELEASE_NOTES, README, HISTORY, ecb.texi and ecb.el to the
# version-number of $(ecb_VERSION).
prepversion:
@$(MV) RELEASE_NOTES RELEASE_NOTES.tmp
@sed "1s/version.*/version $(ecb_VERSION)/" RELEASE_NOTES.tmp > RELEASE_NOTES
Expand All @@ -224,6 +224,14 @@ prepversion:
@$(MV) ecb.el ecb.el.tmp
@sed "s/^(defconst ecb-version.*/(defconst ecb-version \"$(ecb_VERSION)\"/" ecb.el.tmp > ecb.el
@$(RM) ecb.el.tmp
@(echo "/@macro ecbver"; \
echo "+"; \
echo "c"; \
echo "$(ecb_VERSION)"; \
echo "."; \
echo "w"; \
echo "q") | ed -s $(ecb_TEXI) 1> /dev/null


# builds the distribution file $(ecb_VERSION).tar.gz
distrib: $(ecb_INFO_DIR)/$(ecb_INFO) prepversion ecb
Expand Down
2 changes: 1 addition & 1 deletion RELEASE_NOTES
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ECB autom. upgrades the values of these options to theirs new names/types!


Upgrading from version < 1.80:
------------------------------------
------------------------------

The type of the following options has changed:

Expand Down
31 changes: 21 additions & 10 deletions ecb.texi
Original file line number Diff line number Diff line change
Expand Up @@ -38,25 +38,38 @@

@footnotestyle end

@c The version number is auto-frobbed from the Makefile, so you should
@c edit the Makefile to change the version number. mechanism stolen
@c from Tramp
@macro ecbver{}
1.90
@end macro


@dircategory GNU Emacs Lisp
@direntry
* ECB: (ecb). Emacs Code Browser
@end direntry

@titlepage
@sp 10
@center @titlefont{ECB - the Emacs Code Browser}
@center @titlefont{ECB version @ecbver{} - User manual}
@vskip 0pt plus 1 fill
Copyright @copyright{} 2000, 2001, 2002 Jesper Nordenberg
Copyright @copyright{} 2000, 2001, 2002 Jesper Nordenberg, Klaus Berndl
@end titlepage

@node Top, Install and first steps, (dir), (dir)
@comment node-name, next, previous, up

ECB (Emacs Code Browser) is a source code browser for (X)Emacs. It is
a global minor-mode which displays a couple of windows that can be
used to browse directories, files and methods. It supports method
parsing for Java, C, C++, Elisp and some more.
@ifnottex
This is the user manual for ECB version @ecbver{}.
@end ifnottex

ECB stands for ``Emacs Code Browser'' and is a source code browser for
(X)Emacs. It is a global minor-mode which displays a couple of windows
that can be used to browse directories, files and file-contents like
methods and variables. It supports source-code parsing for Java, C,
C++, Elisp, Scheme and some more.

@iftex
@sp 1
Expand Down Expand Up @@ -6499,10 +6512,8 @@ active ECB. This can be done with the hooks of ECB.
@item
Does ECB support C++ as well as Java?
@tab @tab
For older versions of ECB (< 1.80) this depends strongly on the used
semantic-version, but all semantic-versions >= semantic-1.4beta13
should support C++ really well. All versions of ECB >= 1.80 support
C++ as well as Java.
This depends strongly on the used semantic-version, but all
semantic-versions >= semantic-1.4.3 support C++ really well.

@item @tab @tab

Expand Down

0 comments on commit 7eebb16

Please sign in to comment.