summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsabetts <sabetts>2003-04-09 23:12:10 +0000
committersabetts <sabetts>2003-04-09 23:12:10 +0000
commita70ebaf426cc94a6832e7f9eb6335012af595f0a (patch)
tree0548378099533c353f7f591580d99b0af87b422d
parent82e39df891c261352a86f0d94898a23a8d5a4d31 (diff)
downloadratpoison-a70ebaf426cc94a6832e7f9eb6335012af595f0a.zip
(TERM_PROG): Add doc string
-rw-r--r--ChangeLog2
-rw-r--r--acconfig.h9
-rw-r--r--configure.in4
3 files changed, 4 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index 5ce4951..723083a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2003-04-09 Shawn Betts <sabetts@sfu.ca>
+ * configure.in (TERM_PROG): Add doc string
+
* src/events.c (receive_command): handle the case when more than
one client requests a command (fix infinite loop bug).
diff --git a/acconfig.h b/acconfig.h
deleted file mode 100644
index ff70235..0000000
--- a/acconfig.h
+++ /dev/null
@@ -1,9 +0,0 @@
-/* When defined, ratpoison will print debugging information */
-#undef DEBUG
-
-/* X terminal emulator to user */
-#undef TERM_PROG
-
-/* name of emacs program */
-#undef EMACS_PROG
-
diff --git a/configure.in b/configure.in
index 7c60e43..ac982ed 100644
--- a/configure.in
+++ b/configure.in
@@ -17,7 +17,7 @@ dnl You should have received a copy of the GNU General Public License
dnl along with this program; if not, write to the Free Software
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
dnl
-dnl $Id: configure.in,v 1.33 2003/02/23 01:40:42 sabetts Exp $
+dnl $Id: configure.in,v 1.34 2003/04/09 23:12:12 sabetts Exp $
AC_INIT(src/main.c)
AM_INIT_AUTOMAKE(ratpoison, 1.2.0-cvs)
@@ -41,7 +41,7 @@ AC_ARG_ENABLE(debug,
AC_ARG_WITH(xterm, [ --with-xterm=PROG set the x terminal emulator used by ratpoison ],
term_prog=$withval, term_prog="xterm")
-AC_DEFINE_UNQUOTED(TERM_PROG,"$term_prog")
+AC_DEFINE_UNQUOTED(TERM_PROG, "$term_prog", X terminal emulator to use)
dnl Checks for programs.
AC_CHECK_TOOL(CC, gcc)