Index: trunk/src/conf.h =================================================================== --- trunk/src/conf.h (revision 15724) +++ trunk/src/conf.h (revision 15725) @@ -364,7 +364,7 @@ fields depending on type */ int conf_parse_text(confitem_t *dst, int idx, conf_native_type_t type, const char *text, lht_node_t *err_node); -/** Returns the user configuration file name */ +/* Returns the user configuration file name */ const char *conf_get_user_conf_name(); /* Determine the file name of the project file - project_fn and pcb_fn can be NULL */ Index: trunk/src/flag.h =================================================================== --- trunk/src/flag.h (revision 15724) +++ trunk/src/flag.h (revision 15725) @@ -86,17 +86,17 @@ PCB_FLAG_RUBBEREND = 0x00200, PCB_FLAG_WARN = 0x00200, PCB_FLAG_USETHERMAL = 0x00400, - PCB_FLAG_ONSILK = 0x00400, /*!< Obsolete, old files used this to indicate lines drawn on silk. (Used by io_pcb for compatibility.) */ + PCB_FLAG_ONSILK = 0x00400, /* Obsolete, old files used this to indicate lines drawn on silk. (Used by io_pcb for compatibility.) */ PCB_FLAG_OCTAGON = 0x00800, PCB_FLAG_DRC = 0x01000, PCB_FLAG_LOCK = 0x02000, PCB_FLAG_EDGE2 = 0x04000, - PCB_FLAG_VISIT = 0x08000, /*!< marker to avoid re-visiting an object */ + PCB_FLAG_VISIT = 0x08000, /* marker to avoid re-visiting an object */ PCB_FLAG_NONETLIST = 0x10000, PCB_FLAG_MINCUT = 0x20000, /* used by the mincut short find code */ - PCB_FLAG_ONPOINT = 0x40000, /*!< crosshair is on line point or arc point */ + PCB_FLAG_ONPOINT = 0x40000, /* crosshair is on line point or arc point */ PCB_FLAG_TERMNAME = 0x80000, - PCB_FLAG_DRC_INTCONN = 0x100000,/*!< Set for objects are put on the DRC mark because of an intconn */ + PCB_FLAG_DRC_INTCONN = 0x100000,/* Set for objects are put on the DRC mark because of an intconn */ PCB_FLAG_CLEARPOLYPOLY= 0x200000, PCB_FLAG_DYNTEXT = 0x400000, PCB_FLAG_FLOATER = 0x800000 Index: trunk/src/layer_grp.h =================================================================== --- trunk/src/layer_grp.h (revision 15724) +++ trunk/src/layer_grp.h (revision 15725) @@ -108,11 +108,10 @@ (.grp = -1), else layers are deleted too */ int pcb_layergrp_del(pcb_board_t *pcb, pcb_layergrp_id_t gid, int del_layers); -/** Move gfrom to to_before and shift the stack as necessary. Return -1 on range error */ +/* Move gfrom to to_before and shift the stack as necessary. Return -1 on range error */ int pcb_layergrp_move(pcb_board_t *pcb, pcb_layergrp_id_t gfrom, pcb_layergrp_id_t to_before); -/** Move src onto dst, not shifting the stack, free()'ing and overwriting dst, - leaving a gap (0'd slot) at src */ +/* Move src onto dst, not shifting the stack, free()'ing and overwriting dst, leaving a gap (0'd slot) at src */ int pcb_layergrp_move_onto(pcb_board_t *pcb, pcb_layergrp_id_t dst, pcb_layergrp_id_t src);