Mercurial > hg > octave-lyh
view examples/myfunc.c @ 16389:f5204f486a29
gui: add shortcut for goto line action in the editor and center the target line
* file-editor.cc(construct): add shortcut Ctrl-G for goto line action
* file-editor-tab.cc(center_current_line): new function, centering current line
* file-editor-tab.cc(set_debugger_position): use center_current_line
* file-editor-tab.cc(goto_line): call center_current_line only if goto_line was
called from goto line action
* file-editor-tab.h: new function center_current_line
author | Torsten <ttl@justmail.de> |
---|---|
date | Thu, 28 Mar 2013 17:01:43 +0100 |
parents | 6cb30a539481 |
children | be41c30bcb44 |
line wrap: on
line source
#include "mex.h" void mexFunction (int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]) { const char *nm; nm = mexFunctionName (); mexPrintf ("You called function: %s\n", nm); if (strcmp (nm, "myfunc") == 0) mexPrintf ("This is the principal function\n", nm); return; }