Index: trunk/doc/user/09_appendix/action_details.html =================================================================== --- trunk/doc/user/09_appendix/action_details.html (revision 20639) +++ trunk/doc/user/09_appendix/action_details.html (revision 20640) @@ -1228,6 +1228,10 @@ steps must be an integer between -3 and +3. +

s

+

+If no filename is entered, either the last one is used again or, if it is not available, a file select box will pop up. +

saveto

Arguments: @@ -1490,6 +1494,16 @@ +

w

+

+This commands has been added for the convenience of + +vi + + users and has the same functionality as +s +. + Index: trunk/doc/user/09_appendix/action_src/s.html =================================================================== --- trunk/doc/user/09_appendix/action_src/s.html (nonexistent) +++ trunk/doc/user/09_appendix/action_src/s.html (revision 20640) @@ -0,0 +1,2 @@ +If no filename is entered, either the last one is used +again or, if it is not available, a file select box will pop up. Index: trunk/doc/user/09_appendix/action_src/w.html =================================================================== --- trunk/doc/user/09_appendix/action_src/w.html (nonexistent) +++ trunk/doc/user/09_appendix/action_src/w.html (revision 20640) @@ -0,0 +1,2 @@ +This commands has been added for the convenience of vi users +and has the same functionality as s. Index: trunk/src_plugins/shand_cmd/command.c =================================================================== --- trunk/src_plugins/shand_cmd/command.c (revision 20639) +++ trunk/src_plugins/shand_cmd/command.c (revision 20640) @@ -173,27 +173,7 @@ static const char pcb_acts_SaveLayout[] = "s [name]\nw [name]"; static const char pcb_acth_SaveLayout[] = "Saves layout data."; - -/* %start-doc actions s - -Data and the filename are passed to the command defined by the -resource @emph{savepcb_act_}. It must read the layout data from -@emph{stdin}. If no filename is entered, either the last one is used -again or, if it is not available, a file select box will pop up. - -@colonaction - -%end-doc */ - -/* %start-doc actions w - -This commands has been added for the convenience of @code{vi} users -and has the same functionality as @code{s}. - -@colonaction - -%end-doc */ - +/* DOC: s.html w.html */ static fgw_error_t pcb_act_SaveLayout(fgw_arg_t *res, int argc, fgw_arg_t *argv) { const char *filename = NULL;