]> git.donarmstrong.com Git - lilypond.git/commitdiff
patch::: 1.4.9.jcn3
authorJan Nieuwenhuizen <janneke@gnu.org>
Wed, 5 Dec 2001 13:12:52 +0000 (14:12 +0100)
committerJan Nieuwenhuizen <janneke@gnu.org>
Wed, 5 Dec 2001 13:12:52 +0000 (14:12 +0100)
1.4.9.jcn3

.cvsignore [new file with mode: 0644]
CHANGES
GNUmakefile.in
VERSION
scripts/ly2dvi.py

diff --git a/.cvsignore b/.cvsignore
new file mode 100644 (file)
index 0000000..fd0c7ae
--- /dev/null
@@ -0,0 +1,22 @@
+GNUmakefile
+TAGS
+config.cache
+config.h
+config.log
+config.make
+config.status
+configure
+.dstreamrc
+.gdbinit
+*~
+#*
+*.txt
+*.html
+*.png
+out
+out-www
+afm
+share
+tfm
+tfm.[0-9]
+stepmake
diff --git a/CHANGES b/CHANGES
index 61e718ff75479b0f0ef769b07bf90aaadddbf0a9..a9ee54d0bbe8136c1252596667114184f2358b93 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,8 @@
-1.4.9.jcn2
+1.4.9.jcn3
 ==========
 
+* Really included .cvsignore.
+
 * Included Han-Wen's uu1 windows fixes.
 
 * Bugfix: lilypond-profile.sh: append to GS_FONTPATH, GS_LIB.
@@ -12,7 +14,7 @@
 
 * Updated cygwin installer.
 
-* ly2dvi: Don't accept filenames with spaces.
+* ly2dvi: Don't accept filenames with spaces (+ fix).
 
 1.4.9
 =====
index 6240b6bcc96cad8536063a124de32f8f3e0f00c8..109a201be41c3ffa6c27abd44f23944c79fe46e2 100644 (file)
@@ -20,7 +20,7 @@ SCRIPTS = configure aclocal.m4
 README_FILES =  DEDICATION COPYING NEWS CHANGES ROADMAP
 README_TXT_FILES = AUTHORS.txt README.txt INSTALL.txt FAQ.txt
 IN_FILES := $(wildcard *.in)
-EXTRA_DIST_FILES = lilypond-font-lock.el lilypond-mode.el lilypond-init.el vimrc VERSION $(README_FILES)  $(SCRIPTS) $(IN_FILES)  emacsclient.patch mktexnam.patch lexer-gcc-3.0.patch
+EXTRA_DIST_FILES = lilypond-font-lock.el lilypond-mode.el lilypond-init.el vimrc VERSION $(README_FILES)  $(SCRIPTS) $(IN_FILES)  emacsclient.patch mktexnam.patch lexer-gcc-3.0.patch .cvsignore
 NON_ESSENTIAL_DIST_FILES = $(README_TXT_FILES)
 INSTALLATION_DIR=$(datadir)
 INSTALLATION_FILES=$(configuration) VERSION
diff --git a/VERSION b/VERSION
index 5c97b9d37601c8212959983b824027fcc01539cb..e6a4d4d44b9f833d2a0fa51ad63f8b2b3c343247 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -2,7 +2,7 @@ PACKAGE_NAME=LilyPond
 MAJOR_VERSION=1
 MINOR_VERSION=4
 PATCH_LEVEL=9
-MY_PATCH_LEVEL=jcn2
+MY_PATCH_LEVEL=jcn3
 
 # use the above to send patches: MY_PATCH_LEVEL is always empty for a
 # released version.
index 754c6aaf748d81f501b599fef622eac2ffa0b6ba..1857dcef5dbf7700bd8d9b19e29a22e8090b1d20 100644 (file)
@@ -806,9 +806,7 @@ if files and files[0] != '-':
                outbase = strip_extension (outbase, i)
        files = map (abspath, files)
 
-       all = files
-       all.append (output_name)
-       for i in all:
+       for i in files[:] + [output_name]:
                if string.find (i, ' ') >= 0:
                        user_error (_ ("filename should not contain spaces: `%s'") % i)