diff scripts/miscellaneous/getappdata.m @ 11589:b0084095098e

missing semicolons in script files
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 18:26:09 -0500
parents d5bd2766c640
children d0b799dafede
line wrap: on
line diff
--- a/scripts/miscellaneous/getappdata.m
+++ b/scripts/miscellaneous/getappdata.m
@@ -26,7 +26,7 @@
 function val = getappdata (h, name)
 
   if (! (all (ishandle (h)) && ischar (name)))
-    error ("getappdata: invalid input")
+    error ("getappdata: invalid input");
   endif
 
   appdata(numel(h)) = struct();