diff options
author | dos-reis <gdr@axiomatics.org> | 2012-08-26 22:52:41 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2012-08-26 22:52:41 +0000 |
commit | a6ec912229f66f19286fd766e11fe44bd4832972 (patch) | |
tree | ac5cb3193402b3ee1ff4ccdb244826d0588b4aab | |
parent | 50731b6737c4ec7ef2f5be7eca44a5e7692d305a (diff) | |
download | open-axiom-a6ec912229f66f19286fd766e11fe44bd4832972.tar.gz |
* hyper/hthits.c (splitpage): Revert unintended change from last
commit.
* hyper/initx.c (is_it_850): Likewise.
-rw-r--r-- | src/ChangeLog | 6 | ||||
-rw-r--r-- | src/hyper/hthits.c | 4 | ||||
-rw-r--r-- | src/hyper/initx.c | 4 |
3 files changed, 10 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9705fb86..a8720025 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,11 @@ 2012-08-26 Gabriel Dos Reis <gdr@cs.tamu.edu> + * hyper/hthits.c (splitpage): Revert unintended change from last + commit. + * hyper/initx.c (is_it_850): Likewise. + +2012-08-26 Gabriel Dos Reis <gdr@cs.tamu.edu> + * graph/Gdraws/Gfun.c (GDrawLine): Make string parameter of type const char*. (GDrawPushButton): Likewise. diff --git a/src/hyper/hthits.c b/src/hyper/hthits.c index f6bb3e9d..d2e2cfb9 100644 --- a/src/hyper/hthits.c +++ b/src/hyper/hthits.c @@ -1,7 +1,7 @@ /* Copyright (C) 1991-2002, The Numerical Algorithms Group Ltd. All rights reserved. - Copyright (C) 2007-2009, Gabriel Dos Reis. + Copyright (C) 2007-2012, Gabriel Dos Reis. All rights reserved. Redistribution and use in source and binary forms, with or without @@ -136,7 +136,7 @@ static void splitpage(char* buf, char** ptitle, char** pbody) { int n, depth, tno; - const char* s; + char* s; switch (buf[1]) { case 'p': diff --git a/src/hyper/initx.c b/src/hyper/initx.c index 03146c71..521bc8cb 100644 --- a/src/hyper/initx.c +++ b/src/hyper/initx.c @@ -1,7 +1,7 @@ /* Copyright (C) 1991-2002, The Numerical Algorithms Group Ltd. All rights reserved. - Copyright (C) 2007-2010, Gabriel Dos Reis. + Copyright (C) 2007-2012, Gabriel Dos Reis. All rights reserved. Redistribution and use in source and binary forms, with or without @@ -1000,7 +1000,7 @@ mergeDatabases(void) int is_it_850(XFontStruct *fontarg) { - const char* s; + char* s; int i,val; static struct { const char *name; |