From 8c1f12f06b430cfa5a5bf31fe19ba47090a15745 Mon Sep 17 00:00:00 2001 From: Piotr Fusik Date: Mon, 22 Sep 2014 23:47:20 +0200 Subject: [PATCH 01/12] Fix casting an r-value to char. For example: int f(int i, int j) { return (char) (i + 1) == j; } f(0x1234, 0x35) returned 0. This bug caused zlib/uncompress return Z_DATA_ERROR on correct input. --- src/cc65/codegen.c | 72 +++++++++++++++++++++++++--------------------- 1 file changed, 40 insertions(+), 32 deletions(-) diff --git a/src/cc65/codegen.c b/src/cc65/codegen.c index 6143b09fe..f6ec2f51a 100644 --- a/src/cc65/codegen.c +++ b/src/cc65/codegen.c @@ -1226,26 +1226,34 @@ void g_tosint (unsigned flags) -void g_regint (unsigned Flags) -/* Make sure, the value in the primary register an int. Convert if necessary */ +static void g_regchar (unsigned Flags) +/* Make sure, the value in the primary register is in the range of char. Truncate if necessary */ { unsigned L; + AddCodeLine ("ldx #$00"); + + if ((Flags & CF_UNSIGNED) == 0) { + /* Sign extend */ + L = GetLocalLabel(); + AddCodeLine ("cmp #$80"); + AddCodeLine ("bcc %s", LocalLabelName (L)); + AddCodeLine ("dex"); + g_defcodelabel (L); + } +} + + + +void g_regint (unsigned Flags) +/* Make sure, the value in the primary register an int. Convert if necessary */ +{ switch (Flags & CF_TYPEMASK) { case CF_CHAR: if (Flags & CF_FORCECHAR) { /* Conversion is from char */ - if (Flags & CF_UNSIGNED) { - AddCodeLine ("ldx #$00"); - } else { - L = GetLocalLabel(); - AddCodeLine ("ldx #$00"); - AddCodeLine ("cmp #$80"); - AddCodeLine ("bcc %s", LocalLabelName (L)); - AddCodeLine ("dex"); - g_defcodelabel (L); - } + g_regchar (Flags); } /* FALLTHROUGH */ @@ -1263,8 +1271,6 @@ void g_regint (unsigned Flags) void g_reglong (unsigned Flags) /* Make sure, the value in the primary register a long. Convert if necessary */ { - unsigned L; - switch (Flags & CF_TYPEMASK) { case CF_CHAR: @@ -1280,12 +1286,7 @@ void g_reglong (unsigned Flags) } } else { if (IS_Get (&CodeSizeFactor) >= 366) { - L = GetLocalLabel(); - AddCodeLine ("ldx #$00"); - AddCodeLine ("cmp #$80"); - AddCodeLine ("bcc %s", LocalLabelName (L)); - AddCodeLine ("dex"); - g_defcodelabel (L); + g_regchar (Flags); AddCodeLine ("stx sreg"); AddCodeLine ("stx sreg+1"); } else { @@ -1374,20 +1375,27 @@ unsigned g_typecast (unsigned lhs, unsigned rhs) ** by the lhs value. Return the result value. */ { - unsigned ltype, rtype; - - /* Get the type spec from the flags */ - ltype = lhs & CF_TYPEMASK; - rtype = rhs & CF_TYPEMASK; - /* Check if a conversion is needed */ if ((rhs & CF_CONST) == 0) { - if (ltype == CF_LONG && rtype != CF_LONG) { - /* We must promote the primary register to long */ - g_reglong (rhs); - } else if (ltype == CF_INT && rtype != CF_INT) { - /* We must promote the primary register to int */ - g_regint (rhs); + switch (lhs & CF_TYPEMASK) { + + case CF_LONG: + /* We must promote the primary register to long */ + g_reglong (rhs); + break; + + case CF_INT: + /* We must promote the primary register to int */ + g_regint (rhs); + break; + + case CF_CHAR: + /* We must truncate the primary register to char */ + g_regchar (lhs); + break; + + default: + typeerror (lhs); } } From f4f879283db8ce2865b1d028cd968fe2236e997b Mon Sep 17 00:00:00 2001 From: Spiro Trikaliotis Date: Tue, 14 Oct 2014 13:32:58 +0200 Subject: [PATCH 02/12] Fix for: cc65 forgetting to emit labels (Alan Cox) Alan Cox provided this on 2014-10-02 on the cc65.org mailing list: http://www.cc65.org/mailarchive/2014-10/11673.html [...] It breaks in several spots with cc65 where cc65 forgets to emit the labels for the goto statements - the code is there but with no label and it them blows up linking [...] He also provided a fix: http://www.cc65.org/mailarchive/2014-10/11675.html which was approved by Uz: http://www.cc65.org/mailarchive/2014-10/11679.html This is the patch of Alan Cox, adjusted only to the new locations on cc65/github. --- src/cc65/symtab.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/cc65/symtab.c b/src/cc65/symtab.c index 191daddad..1f63e9430 100644 --- a/src/cc65/symtab.c +++ b/src/cc65/symtab.c @@ -268,7 +268,9 @@ void EnterFunctionLevel (void) TagTab = S; /* Create and assign a new label table */ - LabelTab = NewSymTable (SYMTAB_SIZE_LABEL); + S = NewSymTable (SYMTAB_SIZE_LABEL); + S->PrevTab = LabelTab; + LabelTab = S; } @@ -286,6 +288,7 @@ void RememberFunctionLevel (struct FuncDesc* F) /* Don't delete the tables */ SymTab = SymTab->PrevTab; TagTab = TagTab->PrevTab; + LabelTab = LabelTab->PrevTab; } From 55815ea10cfa3a779b44399f99dd0cf1cb4956f2 Mon Sep 17 00:00:00 2001 From: Spiro Trikaliotis Date: Tue, 14 Oct 2014 13:41:17 +0200 Subject: [PATCH 03/12] Equality problem (Ullrich von Bassewitz) Neil Stockbridge reported a problem with equality comparisons on cc65.org's mailing list: http://www.cc65.org/mailarchive/2014-10/11680.html Uz provided a fix for it: http://www.cc65.org/mailarchive/2014-10/11683.html This pull request ask to add the fix to cc65 on github. --- src/cc65/coptstop.c | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/cc65/coptstop.c b/src/cc65/coptstop.c index cf6392bd3..427d0bd13 100644 --- a/src/cc65/coptstop.c +++ b/src/cc65/coptstop.c @@ -766,8 +766,12 @@ static unsigned Opt_toseqax_tosneax (StackOpData* D, const char* BoolTransformer InsertEntry (D, X, D->IP++); /* Lhs load entries can be removed */ - D->Lhs.X.Flags |= LI_REMOVE; - D->Lhs.A.Flags |= LI_REMOVE; + if (LoadX->AM != AM65_IMM) { + D->Lhs.X.Flags |= LI_REMOVE; + } + if (LoadA->AM != AM65_IMM) { + D->Lhs.A.Flags |= LI_REMOVE; + } } else if ((D->Rhs.A.Flags & (LI_DIRECT | LI_RELOAD_Y)) == LI_DIRECT && (D->Rhs.X.Flags & (LI_DIRECT | LI_RELOAD_Y)) == LI_DIRECT) { @@ -790,8 +794,12 @@ static unsigned Opt_toseqax_tosneax (StackOpData* D, const char* BoolTransformer InsertEntry (D, X, D->IP++); /* Rhs load entries can be removed */ - D->Rhs.X.Flags |= LI_REMOVE; - D->Rhs.A.Flags |= LI_REMOVE; + if (LoadX->AM != AM65_IMM) { + D->Rhs.X.Flags |= LI_REMOVE; + } + if (LoadA->AM != AM65_IMM) { + D->Rhs.A.Flags |= LI_REMOVE; + } } else if ((D->Rhs.A.Flags & LI_DIRECT) != 0 && (D->Rhs.X.Flags & LI_DIRECT) != 0) { From 8ec3d9268e95c8416963996c8a610c1b1dc73af7 Mon Sep 17 00:00:00 2001 From: Oliver Schmidt Date: Thu, 30 Oct 2014 22:15:45 +0100 Subject: [PATCH 04/12] Moved Windows binary snapshot to SourceForge. --- .travis.yml | 4 +++- Makefile.gh-pages | 11 +++++------ Makefile.sf-files | 16 ++++++++++++++++ 3 files changed, 24 insertions(+), 7 deletions(-) create mode 100644 Makefile.sf-files diff --git a/.travis.yml b/.travis.yml index eae13f70e..f0207c80e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: - c install: - - sudo apt-get install linuxdoc-tools linuxdoc-tools-info binutils-mingw-w64-i686 gcc-mingw-w64-i686 + - sudo apt-get install linuxdoc-tools linuxdoc-tools-info binutils-mingw-w64-i686 gcc-mingw-w64-i686 sshpass script: - make bin USER_CFLAGS=-Werror - make lib QUIET=1 @@ -10,6 +10,8 @@ script: - make doc zip after_success: - make -f Makefile.gh-pages + - make -f Makefile.sf-files env: global: - secure: "h+hoQdEHGPLNwaqGKmSaM8NBRDLc2X+W05VsnNG2Feq/wPv/AiBjONNlzN7jRf6D6f3aoPXaQ2Lc3bYWdxGvFRCmwiofdxkJI9n5L8HPHLZ2lf37MQsXmGJzoTFOvjPLj73H6HlbI9Ux0El3zO6hvalxiXj6TfoZ41dbhNyvpYk=" + - secure: "A4hMEe5RRfUtYjFGbT7QAvT1Tyo434N+/TiuQeQ4q0L46c79LnXuGQzbFLOFZshZiplLkJr7lFg466CoI1bf2L0cQOew/LesMhE75v0HQ7tZnExWhdpAk0ri6nWixbjn/dmQ0+HxjzJ48A44DMMBYcvSIsO4vflvuJ8etfSg42k=" diff --git a/Makefile.gh-pages b/Makefile.gh-pages index 4c6734ca6..39b497538 100644 --- a/Makefile.gh-pages +++ b/Makefile.gh-pages @@ -5,17 +5,16 @@ GH_PAGES = ../gh-pages all: - echo $(TRAVIS_COMMIT) | zip -z cc65 ifdef GH_TOKEN - git clone --branch=gh-pages https://$(GH_TOKEN)@github.com/cc65/cc65.git $(GH_PAGES) + @echo 'git clone --branch=gh-pages https://$$(GH_TOKEN)@github.com/cc65/cc65.git $(GH_PAGES)' + @git clone --branch=gh-pages https://$(GH_TOKEN)@github.com/cc65/cc65.git $(GH_PAGES) cd $(GH_PAGES) && git config user.name "Oliver Schmidt" cd $(GH_PAGES) && git config user.email "ol.sc@web.de" cd $(GH_PAGES) && git config push.default simple - cd $(GH_PAGES) && $(RM) -r doc download - cd $(GH_PAGES) && mkdir doc download + cd $(GH_PAGES) && $(RM) -r doc + cd $(GH_PAGES) && mkdir doc cp html/*.* $(GH_PAGES)/doc - cp cc65.zip $(GH_PAGES)/download/cc65-snapshot-win32.zip - cd $(GH_PAGES) && git add -A doc download + cd $(GH_PAGES) && git add -A doc cd $(GH_PAGES) && git commit -m "Updated from commit $(TRAVIS_COMMIT)." cd $(GH_PAGES) && git push endif diff --git a/Makefile.sf-files b/Makefile.sf-files new file mode 100644 index 000000000..67c00e7ec --- /dev/null +++ b/Makefile.sf-files @@ -0,0 +1,16 @@ +.PHONY: all + +.SUFFIXES: + +SCPFLAGS = -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no + +SF_USER = oliverschmidt +SF_HOST = frs.sourceforge.net +SF_FILE = /home/frs/project/cc65/cc65-snapshot-win64.zip + +all: + echo $(TRAVIS_COMMIT) | zip -z cc65 +ifdef SF_PASS + @echo 'sshpass -p $$(SF_PASS) scp $(SCPFLAGS) cc65.zip $(SF_USER)@$(SF_HOST):$(SF_FILE)' + @sshpass -p $(SF_PASS) scp $(SCPFLAGS) cc65.zip $(SF_USER)@$(SF_HOST):$(SF_FILE) +endif From 195067d023600b040ad9f97edcd0db55161ea747 Mon Sep 17 00:00:00 2001 From: Oliver Schmidt Date: Thu, 30 Oct 2014 22:43:34 +0100 Subject: [PATCH 05/12] Minor changes to cleanup log. --- Makefile.gh-pages | 2 +- Makefile.sf-files | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.gh-pages b/Makefile.gh-pages index 39b497538..d9d1c1165 100644 --- a/Makefile.gh-pages +++ b/Makefile.gh-pages @@ -16,5 +16,5 @@ ifdef GH_TOKEN cp html/*.* $(GH_PAGES)/doc cd $(GH_PAGES) && git add -A doc cd $(GH_PAGES) && git commit -m "Updated from commit $(TRAVIS_COMMIT)." - cd $(GH_PAGES) && git push + -cd $(GH_PAGES) && git push endif diff --git a/Makefile.sf-files b/Makefile.sf-files index 67c00e7ec..0eefffc77 100644 --- a/Makefile.sf-files +++ b/Makefile.sf-files @@ -2,7 +2,7 @@ .SUFFIXES: -SCPFLAGS = -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no +SCPFLAGS = -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -q SF_USER = oliverschmidt SF_HOST = frs.sourceforge.net From 2cea214e865f6ec3a34c048797d5e98e4d8f6b98 Mon Sep 17 00:00:00 2001 From: Oliver Schmidt Date: Thu, 30 Oct 2014 23:21:40 +0100 Subject: [PATCH 06/12] Ignore return value of commit (not push). --- Makefile.gh-pages | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.gh-pages b/Makefile.gh-pages index d9d1c1165..10ee4583b 100644 --- a/Makefile.gh-pages +++ b/Makefile.gh-pages @@ -15,6 +15,6 @@ ifdef GH_TOKEN cd $(GH_PAGES) && mkdir doc cp html/*.* $(GH_PAGES)/doc cd $(GH_PAGES) && git add -A doc - cd $(GH_PAGES) && git commit -m "Updated from commit $(TRAVIS_COMMIT)." - -cd $(GH_PAGES) && git push + -cd $(GH_PAGES) && git commit -m "Updated from commit $(TRAVIS_COMMIT)." + cd $(GH_PAGES) && git push endif From 91b9451c60682c0fda984750406d58b1b019f87e Mon Sep 17 00:00:00 2001 From: Oliver Schmidt Date: Sat, 1 Nov 2014 13:45:17 +0100 Subject: [PATCH 07/12] Reduced clutter in root dir. --- Makefile.gh-pages | 20 -------------------- Makefile.sf-files | 16 ---------------- Makefile.travis | 37 +++++++++++++++++++++++++++++++++++++ 3 files changed, 37 insertions(+), 36 deletions(-) delete mode 100644 Makefile.gh-pages delete mode 100644 Makefile.sf-files create mode 100644 Makefile.travis diff --git a/Makefile.gh-pages b/Makefile.gh-pages deleted file mode 100644 index 10ee4583b..000000000 --- a/Makefile.gh-pages +++ /dev/null @@ -1,20 +0,0 @@ -.PHONY: all - -.SUFFIXES: - -GH_PAGES = ../gh-pages - -all: -ifdef GH_TOKEN - @echo 'git clone --branch=gh-pages https://$$(GH_TOKEN)@github.com/cc65/cc65.git $(GH_PAGES)' - @git clone --branch=gh-pages https://$(GH_TOKEN)@github.com/cc65/cc65.git $(GH_PAGES) - cd $(GH_PAGES) && git config user.name "Oliver Schmidt" - cd $(GH_PAGES) && git config user.email "ol.sc@web.de" - cd $(GH_PAGES) && git config push.default simple - cd $(GH_PAGES) && $(RM) -r doc - cd $(GH_PAGES) && mkdir doc - cp html/*.* $(GH_PAGES)/doc - cd $(GH_PAGES) && git add -A doc - -cd $(GH_PAGES) && git commit -m "Updated from commit $(TRAVIS_COMMIT)." - cd $(GH_PAGES) && git push -endif diff --git a/Makefile.sf-files b/Makefile.sf-files deleted file mode 100644 index 0eefffc77..000000000 --- a/Makefile.sf-files +++ /dev/null @@ -1,16 +0,0 @@ -.PHONY: all - -.SUFFIXES: - -SCPFLAGS = -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -q - -SF_USER = oliverschmidt -SF_HOST = frs.sourceforge.net -SF_FILE = /home/frs/project/cc65/cc65-snapshot-win64.zip - -all: - echo $(TRAVIS_COMMIT) | zip -z cc65 -ifdef SF_PASS - @echo 'sshpass -p $$(SF_PASS) scp $(SCPFLAGS) cc65.zip $(SF_USER)@$(SF_HOST):$(SF_FILE)' - @sshpass -p $(SF_PASS) scp $(SCPFLAGS) cc65.zip $(SF_USER)@$(SF_HOST):$(SF_FILE) -endif diff --git a/Makefile.travis b/Makefile.travis new file mode 100644 index 000000000..6f83e2439 --- /dev/null +++ b/Makefile.travis @@ -0,0 +1,37 @@ +.PHONY: all gh-pages sf-files + +.SUFFIXES: + +all: gh-pages sf-files + +GH_NAME = Oliver Schmidt +GH_MAIL = ol.sc@web.de +GH_PATH = ../gh-pages + +gh-pages: +ifdef GH_TOKEN + @echo 'git clone --branch=gh-pages https://$$(GH_TOKEN)@github.com/cc65/cc65.git $(GH_PATH)' + @git clone --branch=gh-pages https://$(GH_TOKEN)@github.com/cc65/cc65.git $(GH_PATH) + cd $(GH_PATH) && git config user.name "$(GH_NAME)" + cd $(GH_PATH) && git config user.email "$(GH_MAIL)" + cd $(GH_PATH) && git config push.default simple + cd $(GH_PATH) && $(RM) -r doc + cd $(GH_PATH) && mkdir doc + cp html/*.* $(GH_PATH)/doc + cd $(GH_PATH) && git add -A doc + -cd $(GH_PATH) && git commit -m "Updated from commit $(TRAVIS_COMMIT)." + cd $(GH_PATH) && git push +endif + +SF_USER = oliverschmidt +SF_HOST = frs.sourceforge.net +SF_FILE = /home/frs/project/cc65/cc65-snapshot-win64.zip + +SCPFLAGS = -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -q + +sf-files: +ifdef SF_PASS + echo $(TRAVIS_COMMIT) | zip -z cc65 + @echo 'sshpass -p $$(SF_PASS) scp $(SCPFLAGS) cc65.zip $(SF_USER)@$(SF_HOST):$(SF_FILE)' + @sshpass -p $(SF_PASS) scp $(SCPFLAGS) cc65.zip $(SF_USER)@$(SF_HOST):$(SF_FILE) +endif From ac12a738bcc2b871efa600928332c8b7bab4a6f1 Mon Sep 17 00:00:00 2001 From: Oliver Schmidt Date: Sat, 1 Nov 2014 13:49:19 +0100 Subject: [PATCH 08/12] Adjusted Travis CI file to recent change. --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index f0207c80e..a11412230 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,8 +9,7 @@ script: - make bin USER_CFLAGS=-Werror CROSS_COMPILE=i686-w64-mingw32- - make doc zip after_success: - - make -f Makefile.gh-pages - - make -f Makefile.sf-files + - make -f Makefile.travis env: global: - secure: "h+hoQdEHGPLNwaqGKmSaM8NBRDLc2X+W05VsnNG2Feq/wPv/AiBjONNlzN7jRf6D6f3aoPXaQ2Lc3bYWdxGvFRCmwiofdxkJI9n5L8HPHLZ2lf37MQsXmGJzoTFOvjPLj73H6HlbI9Ux0El3zO6hvalxiXj6TfoZ41dbhNyvpYk=" From ebbec9bfb7b422b58353b872c36d12af2f931a88 Mon Sep 17 00:00:00 2001 From: Oliver Schmidt Date: Mon, 3 Nov 2014 21:23:29 +0100 Subject: [PATCH 09/12] Modified doc generation to target 'doc' repository. --- Makefile.travis | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Makefile.travis b/Makefile.travis index 6f83e2439..9deba227c 100644 --- a/Makefile.travis +++ b/Makefile.travis @@ -6,19 +6,18 @@ all: gh-pages sf-files GH_NAME = Oliver Schmidt GH_MAIL = ol.sc@web.de -GH_PATH = ../gh-pages +GH_PATH = ../doc gh-pages: ifdef GH_TOKEN - @echo 'git clone --branch=gh-pages https://$$(GH_TOKEN)@github.com/cc65/cc65.git $(GH_PATH)' - @git clone --branch=gh-pages https://$(GH_TOKEN)@github.com/cc65/cc65.git $(GH_PATH) + @echo 'git clone --branch=gh-pages https://$$(GH_TOKEN)@github.com/cc65/doc.git $(GH_PATH)' + @git clone --branch=gh-pages https://$(GH_TOKEN)@github.com/cc65/doc.git $(GH_PATH) cd $(GH_PATH) && git config user.name "$(GH_NAME)" cd $(GH_PATH) && git config user.email "$(GH_MAIL)" cd $(GH_PATH) && git config push.default simple - cd $(GH_PATH) && $(RM) -r doc - cd $(GH_PATH) && mkdir doc - cp html/*.* $(GH_PATH)/doc - cd $(GH_PATH) && git add -A doc + $(RM) $(GH_PATH)/*.* + cp html/*.* $(GH_PATH) + cd $(GH_PATH) && git add -A -cd $(GH_PATH) && git commit -m "Updated from commit $(TRAVIS_COMMIT)." cd $(GH_PATH) && git push endif From dc3167fcc82a73bea7d23a6a6a9965d8df5cf5de Mon Sep 17 00:00:00 2001 From: Oliver Schmidt Date: Mon, 3 Nov 2014 21:42:54 +0100 Subject: [PATCH 10/12] Adjusted doc URL. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 81805f03b..198d5558c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[documentation](http://cc65.github.io/cc65/doc) +[documentation](http://cc65.github.io/doc) [wiki](https://github.com/cc65/wiki/wiki) From b552c184054ce1a4633a2b1533ffbacb6cff2c5c Mon Sep 17 00:00:00 2001 From: Oliver Schmidt Date: Mon, 3 Nov 2014 23:21:52 +0100 Subject: [PATCH 11/12] Consistently rely on SSL redirection. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 198d5558c..bf7d6dcde 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ [documentation](http://cc65.github.io/doc) -[wiki](https://github.com/cc65/wiki/wiki) +[wiki](http://github.com/cc65/wiki/wiki) -[![build status](https://travis-ci.org/cc65/cc65.png)](https://travis-ci.org/cc65/cc65/builds) +[![build status](http://travis-ci.org/cc65/cc65.png)](http://travis-ci.org/cc65/cc65/builds) cc65 is a complete cross development package for 65(C)02 systems, including a powerful macro assembler, a C compiler, linker, librarian and several From 5b55fa45006264a99b8e1eb026e728f377d82b9b Mon Sep 17 00:00:00 2001 From: Oliver Schmidt Date: Mon, 3 Nov 2014 23:31:54 +0100 Subject: [PATCH 12/12] Adjusted URL. --- Makefile.travis | 2 +- doc/index.sgml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.travis b/Makefile.travis index 9deba227c..78ded63e6 100644 --- a/Makefile.travis +++ b/Makefile.travis @@ -19,7 +19,7 @@ ifdef GH_TOKEN cp html/*.* $(GH_PATH) cd $(GH_PATH) && git add -A -cd $(GH_PATH) && git commit -m "Updated from commit $(TRAVIS_COMMIT)." - cd $(GH_PATH) && git push + cd $(GH_PATH) && git push -q endif SF_USER = oliverschmidt diff --git a/doc/index.sgml b/doc/index.sgml index c77344865..7de8b26ce 100644 --- a/doc/index.sgml +++ b/doc/index.sgml @@ -2,7 +2,7 @@
cc65 Documentation Overview -<author><url url="https://github.com/cc65/cc65/"> +<author><url url="http://cc65.github.io/doc"> <date> <sect>Program documentation<p>