summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2006-08-10 23:06:32 +0000
committerJose Antonio Ortega Ruiz <jao@gnu.org>2006-08-10 23:06:32 +0000
commit1eab61b97bfa36457fb90cbef93a99cbe0d8cd97 (patch)
tree33b09be0b3ed5a139faf950fed45e35465e2ca23
parent39d48633458130498eeabc02332754ba34b8b645 (diff)
downloadmdk-1eab61b97bfa36457fb90cbef93a99cbe0d8cd97.tar.gz
mdk-1eab61b97bfa36457fb90cbef93a99cbe0d8cd97.tar.bz2
Version strings updated to 1.2.3
git-archimport-id: mdk@sv.gnu.org/mdk--devel--1--patch-38
-rw-r--r--TODO4
-rw-r--r--configure.in4
-rw-r--r--doc/mdk.texi2
-rw-r--r--mixgtk/mixgtk.glade13
-rw-r--r--mixgtk/mixgtk_mixal.c4
5 files changed, 19 insertions, 8 deletions
diff --git a/TODO b/TODO
index c726694..315c2c5 100644
--- a/TODO
+++ b/TODO
@@ -1,8 +1,6 @@
-*- mode: outline -*-
-* Version 1.2.3
-** Self-local symbols 'SYM EQU SYM+1' (valid?)
-** Output of compilation command in gmixvm window
+* Version 1.2.4
** gmixvm: list of last loaded programs
* Misc
diff --git a/configure.in b/configure.in
index 96594f5..8b3bd6d 100644
--- a/configure.in
+++ b/configure.in
@@ -8,8 +8,8 @@
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-AC_INIT([GNU MDK],1.2.2,[bug-mdk@gnu.org],mdk)
-AM_INIT_AUTOMAKE(mdk,1.2.2)
+AC_INIT([GNU MDK],1.2.3,[bug-mdk@gnu.org],mdk)
+AM_INIT_AUTOMAKE(mdk,1.2.3)
AM_CONFIG_HEADER(config.h)
AM_MAINTAINER_MODE
diff --git a/doc/mdk.texi b/doc/mdk.texi
index 1d8b37a..b8a1e53 100644
--- a/doc/mdk.texi
+++ b/doc/mdk.texi
@@ -9,7 +9,7 @@
@set UPDATED August, 2006
@set EDITION 1.2.2
-@set VERSION 1.2.2
+@set VERSION 1.2.3
@set JAO Jose Antonio Ortega Ruiz
@set PHILIP Philip E. King
@set PIETER Pieter E. J. Pareit
diff --git a/mixgtk/mixgtk.glade b/mixgtk/mixgtk.glade
index e50a68b..78b2d46 100644
--- a/mixgtk/mixgtk.glade
+++ b/mixgtk/mixgtk.glade
@@ -726,6 +726,19 @@
</child>
<child>
+ <widget class="GtkSeparatorToolItem" id="separatortoolitem13">
+ <property name="visible">True</property>
+ <property name="draw">True</property>
+ <property name="visible_horizontal">True</property>
+ <property name="visible_vertical">True</property>
+ </widget>
+ <packing>
+ <property name="expand">False</property>
+ <property name="homogeneous">False</property>
+ </packing>
+ </child>
+
+ <child>
<widget class="GtkToolButton" id="run_button">
<property name="visible">True</property>
<property name="tooltip" translatable="yes">Run</property>
diff --git a/mixgtk/mixgtk_mixal.c b/mixgtk/mixgtk_mixal.c
index 84664b9..120abab 100644
--- a/mixgtk/mixgtk_mixal.c
+++ b/mixgtk/mixgtk_mixal.c
@@ -121,8 +121,8 @@ insert_symbol_ (gpointer symbol, gpointer value, gpointer data)
mix_word_t w = (mix_word_t)GPOINTER_TO_INT (value);
g_snprintf (DEC, DEC_SIZE, "%s%ld",
- mix_word_is_negative (w)? "-" : "+",
- mix_word_magnitude (w));
+ mix_word_is_negative (w)? "-" : "+",
+ mix_word_magnitude (w));
mix_word_print_to_buffer (w, WORD);
gtk_list_store_append (symbols_store_, &iter);