Mercurial > hg > octave-lyh
diff src/data.cc @ 14615:88e67d58b06b
avoid makeinfo problem with backslash in macro argument
* macros.texi (xbackslashchar): New macro.
* data.cc (Fmldivide, Fldivide): Use it.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 10 May 2012 11:48:48 -0400 |
parents | 3a9a56999ce5 |
children | f8d5095fa90d |
line wrap: on
line diff
--- a/src/data.cc +++ b/src/data.cc @@ -5477,7 +5477,7 @@ "-*- texinfo -*-\n\ @deftypefn {Built-in Function} {} mldivide (@var{x}, @var{y})\n\ Return the matrix left division of @var{x} and @var{y}.\n\ -This function and @w{@xcode{x \\ y}} are equivalent.\n\ +This function and @w{@xcode{x @xbackslashchar{} y}} are equivalent.\n\ @seealso{mrdivide, ldivide}\n\ @end deftypefn") { @@ -5594,7 +5594,7 @@ "-*- texinfo -*-\n\ @deftypefn {Built-in Function} {} ldivide (@var{x}, @var{y})\n\ Return the element-by-element left division of @var{x} and @var{y}.\n\ -This function and @w{@xcode{x .\\ y}} are equivalent.\n\ +This function and @w{@xcode{x .@xbackslashchar{} y}} are equivalent.\n\ @seealso{rdivide, mldivide}\n\ @end deftypefn") {