Index: trunk/doc/user/09_appendix/action_details.html =================================================================== --- trunk/doc/user/09_appendix/action_details.html (revision 20581) +++ trunk/doc/user/09_appendix/action_details.html (revision 20582) @@ -15,7 +15,39 @@ , add the rats - using the same serial number as the deletes, then Block , which checks to see if the deletions or additions actually did anything. If not, the serial number is set to the saved number, as there's nothing to undo. If something did happen, the serial number is incremented so that these actions are counted as a single undo step. +

+ Arguments: +

+ + + + + + + + + + +
+ Save + + Saves the undo serial number. +
+ Restore + + Returns it to the last saved number. +
+ Close + + Sets it to 1 greater than the last save. +
+ Block + + Does a Restore if there was nothing to undo, else does a Close. +
+ +

changejoin

The join flag determines whether a line or arc, drawn to intersect a polygon, electrically connects to the polygon or not. When joined, the line/arc is simply drawn over the polygon, making an electrical connection. When not joined, a gap is drawn between the line and the polygon, insulating them from each other. Index: trunk/doc/user/09_appendix/action_src/atomic.html =================================================================== --- trunk/doc/user/09_appendix/action_src/atomic.html (revision 20581) +++ trunk/doc/user/09_appendix/action_src/atomic.html (revision 20582) @@ -9,3 +9,19 @@ number is set to the saved number, as there's nothing to undo. If something did happen, the serial number is incremented so that these actions are counted as a single undo step. +

+Arguments: +

+ +
Save + Saves the undo serial number. + +
Restore + Returns it to the last saved number. + +
Close + Sets it to 1 greater than the last save. + +
Block + Does a Restore if there was nothing to undo, else does a Close. +
Index: trunk/src/undo_act.c =================================================================== --- trunk/src/undo_act.c (revision 20581) +++ trunk/src/undo_act.c (revision 20582) @@ -50,33 +50,9 @@ #include "tool.h" -/* --------------------------------------------------------------------------- */ - static const char pcb_acts_Atomic[] = "Atomic(Save|Restore|Close|Block)"; - static const char pcb_acth_Atomic[] = "Save or restore the undo serial number."; /* DOC: atomic.html */ - -/* %start-doc actions Atomic - -@table @code - -@item Save -Saves the undo serial number. - -@item Restore -Returns it to the last saved number. - -@item Close -Sets it to 1 greater than the last save. - -@item Block -Does a Restore if there was nothing to undo, else does a Close. - -@end table - -%end-doc */ - fgw_error_t pcb_act_Atomic(fgw_arg_t *res, int argc, fgw_arg_t *argv) { int op;