changeset 13482:0daa1ac62b00

Merge with Savannah
author Jordi Gutiérrez Hermoso <jordigh@gmail.com>
date Mon, 25 Apr 2011 20:34:31 -0500
parents e643b9393eba (current diff) 83fa84ef63ca (diff)
children 799c03ea7004
files scripts/elfun/lcm.m
diffstat 6 files changed, 13 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/doc/faq/OctaveFAQ.texi
+++ b/doc/faq/OctaveFAQ.texi
@@ -63,7 +63,7 @@
 * Getting Octave::
 * Installation::
 * Common problems::
-* How do I ...?::
+* Using Octave::
 * @sc{Matlab} compatibility::
 * Index::
 @end menu
@@ -785,6 +785,7 @@
 
 @menu
 * How do I set the number of displayed decimals?::
+* How does Octave solve linear systems?::
 @end menu
 
 @cindex Tips and tricks
@@ -804,9 +805,8 @@
 @end group
 @end example
 
-@menu
-* How does Octave solve linear systems?
-@end menu
+@node How does Octave solve linear systems?
+@section How does Octave solve linear systems?
 
 @cindex backslash operator
 
@@ -814,7 +814,7 @@
 Octave manual contains a complete high-level description of the
 algorithm that Octave uses to decide how to solve a particular linear
 system, e.g. how the backslash operator @code{A\x} will be interpreted.
-Sections ``Techniques used for Linear Algebra'' and ``Linear Algebra on
+Sections ``Techniques Used for Linear Algebra'' and ``Linear Algebra on
 Sparse Matrices'' from the manual describe this procedure.
 
 @node @sc{Matlab} compatibility
--- a/scripts/elfun/module.mk
+++ b/scripts/elfun/module.mk
@@ -20,7 +20,6 @@
   elfun/csc.m \
   elfun/cscd.m \
   elfun/csch.m \
-  elfun/lcm.m \
   elfun/sec.m \
   elfun/secd.m \
   elfun/sech.m \
--- a/scripts/miscellaneous/ls.m
+++ b/scripts/miscellaneous/ls.m
@@ -63,7 +63,7 @@
           retval = strvcat (regexp (output, '\S+', 'match'){:});
         endif
       else
-        error ("ls: command exited abnormally with status %d", status);
+        error ("ls: command exited abnormally with status %d\n", status);
       endif
 
     else
rename from scripts/elfun/lcm.m
rename to scripts/specfun/lcm.m
--- a/scripts/specfun/module.mk
+++ b/scripts/specfun/module.mk
@@ -7,6 +7,7 @@
   specfun/factor.m \
   specfun/factorial.m \
   specfun/isprime.m \
+  specfun/lcm.m \
   specfun/legendre.m \
   specfun/nchoosek.m \
   specfun/nthroot.m \
--- a/scripts/startup/module.mk
+++ b/scripts/startup/module.mk
@@ -3,24 +3,22 @@
 startup_FCN_FILES = \
   startup/__finish__.m
 
+LOCAL_STARTUP_FILE_SRC  = startup/local-rcfile
+
 SYSTEM_STARTUP_FILE_SRC = startup/main-rcfile
 
 SYSTEM_INPUTRC_FILE_SRC = startup/inputrc
 
-LOCAL_STARTUP_FILE_SRC = startup/local-rcfile
-
 STARTUP_FILE_SRC = \
+  $(LOCAL_STARTUP_FILE_SRC) \
   $(SYSTEM_STARTUP_FILE_SRC) \
-  $(SYSTEM_INPUTRC_FILE_SRC) \
-  $(LOCAL_STARTUP_FILE_SRC)
+  $(SYSTEM_INPUTRC_FILE_SRC)
 
 FCN_FILES += \
-  $(startup_FCN_FILES) \
-  $(SYSTEM_STARTUP_FILE_SRC) \
-  $(LOCAL_STARTUP_FILE_SRC)
+  $(startup_FCN_FILES)
 
 EXTRA_DIST += \
-  $(SYSTEM_INPUTRC_FILE_SRC)
+  $(STARTUP_FILE_SRC)
 
 PKG_ADD_FILES += startup/PKG_ADD