# HG changeset patch # User Rik # Date 1440455223 25200 # Node ID ab4090316e6d94b62f39883e79323c076c679a9c # Parent ba032e57fd96693b973770824e6c689670820d7e Don't put default xtick vector size in documentation (bug #45725). * genpropdoc.m: Don't report default vector, since it is changeable, for "[xyz]tick". diff -r ba032e57fd96 -r ab4090316e6d doc/interpreter/genpropdoc.m --- a/doc/interpreter/genpropdoc.m Thu Aug 20 06:51:30 2015 -0700 +++ b/doc/interpreter/genpropdoc.m Mon Aug 24 15:27:03 2015 -0700 @@ -635,6 +635,7 @@ case "xtick" s.doc = "Position of x tick marks. __modemsg__."; s.valid = "vector"; + s.printdefault = false; case "xticklabel" s.doc = "Labels of x tick marks. __modemsg__."; @@ -669,6 +670,7 @@ case "ytick" s.doc = "Position of y tick marks. __modemsg__."; s.valid = "vector"; + s.printdefault = false; case "yticklabel" s.doc = "Labels of y tick marks. __modemsg__."; @@ -702,6 +704,7 @@ case "ztick" s.doc = "Position of z tick marks. __modemsg__."; s.valid = "vector"; + s.printdefault = false; case "zticklabel" s.doc = "Labels of z tick marks. __modemsg__.";