changeset 18989:0b657f4e7780 gui-release

maint: Merge stable to gui-release.
author Rik <rik@octave.org>
date Tue, 05 Aug 2014 17:51:47 -0700
parents 724fc0a9eeb1 (current diff) 082063dc2165 (diff)
children b517b08d2e24 2675b285f55f
files scripts/miscellaneous/ls.m
diffstat 3 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/doc/interpreter/package.txi	Mon Aug 04 15:05:15 2014 -0400
+++ b/doc/interpreter/package.txi	Tue Aug 05 17:51:47 2014 -0700
@@ -271,7 +271,7 @@
 loaded.
 @end table
 
-Besides the above mentioned files, a package can also contain on or
+Besides the above mentioned files, a package can also contain one or
 more of the following directories:
 
 @table @code
@@ -359,7 +359,7 @@
 
 @item Version
 Version of the package.  A package version must be 3 numbers separated
-by a dot.
+by dots.
 
 @item Date
 Date of last update.
--- a/scripts/miscellaneous/ls.m	Mon Aug 04 15:05:15 2014 -0400
+++ b/scripts/miscellaneous/ls.m	Tue Aug 05 17:51:47 2014 -0700
@@ -68,7 +68,7 @@
         args{end}(end) = "";
       endif
     else
-      args = regexprep (args, '([^\w.*? -])', '\\$1');
+      args = regexprep (args, '([^\w.*?-])', '\\$1');
     endif
     args = sprintf ("%s ", args{:});
   else
--- a/scripts/special-matrix/toeplitz.m	Mon Aug 04 15:05:15 2014 -0400
+++ b/scripts/special-matrix/toeplitz.m	Tue Aug 05 17:51:47 2014 -0700
@@ -74,7 +74,7 @@
     if (! (isvector (c) && isvector (r))) 
       error ("toeplitz: C and R must be vectors");
     elseif (r(1) != c(1))
-      warning ("toeplitz: column wins anti-diagonal conflict");
+      warning ("toeplitz: column wins diagonal conflict");
     endif
 
     nr = length (c);