changeset 8555:821c0a7efbee

title.m: fix missing semicolon
author John W. Eaton <jwe@octave.org>
date Wed, 21 Jan 2009 11:42:40 -0500
parents 8cd2277569c0
children d81caf2e3a28
files scripts/plot/title.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/title.m
+++ b/scripts/plot/title.m
@@ -30,7 +30,7 @@
 function h = title (s, varargin)
 
   if (rem (nargin, 2) == 1)
-    varargin = [{"horizontalalignment", "center"}, varargin]
+    varargin = [{"horizontalalignment", "center"}, varargin];
     if (nargout > 0)
       h = __axis_label__ ("title", s, varargin{:});
     else