changeset 5778:70f67d85558d

[project @ 2006-04-27 01:34:08 by jwe]
author jwe
date Thu, 27 Apr 2006 01:34:08 +0000
parents 246b1fc1e628
children 12eeebfa7ead
files ChangeLog configure.in src/ChangeLog src/pager.cc
diffstat 4 files changed, 12 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Apr 26 18:16:25 2006 +0000
+++ b/ChangeLog	Thu Apr 27 01:34:08 2006 +0000
@@ -1,3 +1,7 @@
+2006-04-26  Thomas Weber  <thomas.weber.mail@gmail.com>
+
+	* configure.in: Fix apiversion vs. api_version typo.
+
 2006-04-25  John W. Eaton  <jwe@octave.org>
 
 	* Makefile.in (TARGETS): Include run-octave and .gdbinit in the list.
--- a/configure.in	Wed Apr 26 18:16:25 2006 +0000
+++ b/configure.in	Thu Apr 27 01:34:08 2006 +0000
@@ -29,7 +29,7 @@
 EXTERN_CXXFLAGS="$CXXFLAGS"
 
 AC_INIT
-AC_REVISION($Revision: 1.508 $)
+AC_REVISION($Revision: 1.509 $)
 AC_PREREQ(2.57)
 AC_CONFIG_SRCDIR([src/octave.cc])
 AC_CONFIG_HEADER(config.h)
@@ -77,7 +77,7 @@
 OCTAVE_SET_DEFAULT(fcnfiledir, '$(datadir)/octave/$(version)/m')
 OCTAVE_SET_DEFAULT(localfcnfiledir, '$(datadir)/octave/site/m')
 OCTAVE_SET_DEFAULT(localapifcnfiledir,
-  '$(datadir)/octave/site/$(apiversion)/m')
+  '$(datadir)/octave/site/$(api_version)/m')
 OCTAVE_SET_DEFAULT(localverfcnfiledir, '$(datadir)/octave/$(version)/site/m')
 OCTAVE_SET_DEFAULT(localfcnfilepath,
   '$(localverfcnfiledir)//$(sepchar)$(localapifcnfiledir)//$(sepchar)$(localfcnfiledir)//')
@@ -93,7 +93,7 @@
 OCTAVE_SET_DEFAULT(localoctfiledir,
   '$(libexecdir)/octave/site/oct/$(canonical_host_type)')
 OCTAVE_SET_DEFAULT(localapioctfiledir,
-  '$(libexecdir)/octave/site/oct/$(apiversion)/$(canonical_host_type)')
+  '$(libexecdir)/octave/site/oct/$(api_version)/$(canonical_host_type)')
 OCTAVE_SET_DEFAULT(localveroctfiledir,
   '$(libexecdir)/octave/$(version)/site/oct/$(canonical_host_type)')
 OCTAVE_SET_DEFAULT(localoctfilepath,
--- a/src/ChangeLog	Wed Apr 26 18:16:25 2006 +0000
+++ b/src/ChangeLog	Thu Apr 27 01:34:08 2006 +0000
@@ -1,3 +1,7 @@
+2006-04-26  Bill Denney  <denney@seas.upenn.edu>
+
+ 	* pager.cc (Fterminal_size): Add list_in_columns to @seealso.
+
 2006-04-26  John W. Eaton  <jwe@octave.org>
 
 	* dirfns.cc (Ffilesep): New function to replace DEFCONST in
--- a/src/pager.cc	Wed Apr 26 18:16:25 2006 +0000
+++ b/src/pager.cc	Thu Apr 27 01:34:08 2006 +0000
@@ -509,6 +509,7 @@
 @deftypefn {Built-in Function} {} terminal_size ()\n\
 Return a two-element row vector containing the current size of the\n\
 terminal window in characters (rows and columns).\n\
+@seealso{list_in_columns}\n\
 @end deftypefn")
 {
   RowVector size (2, 0.0);