Changeset 2549 for trunk/tools
- Timestamp:
- Jan 28, 2000, 3:53:53 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/vslick/odin32.e
r2505 r2549 1 /* $Id: odin32.e,v 1. 1 2000-01-23 03:33:08bird Exp $1 /* $Id: odin32.e,v 1.2 2000-01-28 14:53:53 bird Exp $ 2 2 * 3 3 * Visual SlickEdit Documentation Macros. 4 4 * 5 * Copyright (c) 1999-2000 knut st. osmundsen 5 * Copyright (c) 1999-2000 knut st. osmundsen (knut.stange.osmundsen@pmsc.no) 6 6 * 7 7 * Project Odin Software License can be found in LICENSE.TXT 8 8 * 9 ** 9 **** 10 10 * 11 11 * This define the following keys: … … 24 24 * Ctrl+Shift+T: Makes tag file 25 25 * 26 * Remember to set the correct sOdin32UserName and sOdin32UserInitials26 * Remember to set the correct sOdin32UserName, sOdin32UserEmail and sOdin32UserInitials 27 27 * before compiling and loading the macros into Visual SlickEdit. 28 28 * … … 32 32 defeventtab default_keys 33 33 def 'C-S-A' = odin32_signature 34 35 36 37 38 39 40 41 42 43 34 def 'C-S-C' = odin32_classbox 35 def 'C-S-F' = odin32_funcbox 36 def 'C-S-G' = odin32_globalbox 37 def 'C-S-H' = odin32_headerbox 38 def 'C-S-I' = odin32_intfuncbox 39 def 'C-S-K' = odin32_constbox 40 def 'C-S-M' = odin32_modulebox 41 def 'C-S-O' = odin32_oneliner 42 def 'C-S-S' = odin32_structbox 43 def 'C-S-T' = odin32_maketagfile 44 44 45 45 … … 47 47 #pragma option(redeclvars, on) 48 48 #include 'slick.sh' 49 _str sOdin32UserInitials = "kso"; 49 50 /* Remeber to change these! */ 51 _str sOdin32UserInitials = "kso"; 50 52 _str sOdin32UserName = "knut st. osmundsen"; 53 _str sOdin32UserEmail = "knut.stange.osmundsen@pmsc.no"; 54 51 55 52 56 … … 178 182 _insert_text(" * @version \n"); 179 183 _insert_text(" * @verdesc \n"); 180 _insert_text(" * @author " sOdin32UserName"\n");184 _insert_text(" * @author " sOdin32UserName " (" sOdin32UserEmail ")\n"); 181 185 _insert_text(" * @approval \n"); 182 186 _insert_text(" */\n"); … … 205 209 _insert_text("; @sketch \n"); 206 210 _insert_text("; @status \n"); 207 _insert_text("; @author "sOdin32UserName" \n");211 _insert_text("; @author "sOdin32UserName" (" sOdin32UserEmail ")\n"); 208 212 _insert_text("; @remark \n"); 209 213 up(10); … … 220 224 _insert_text(" * @sketch \n"); 221 225 _insert_text(" * @status \n"); 222 _insert_text(" * @author "sOdin32UserName" \n");226 _insert_text(" * @author "sOdin32UserName" (" sOdin32UserEmail ")\n"); 223 227 _insert_text(" * @remark \n"); 224 228 _insert_text(" */\n"); … … 299 303 if (file_eq(p_extension, 'asm')) 300 304 { 301 _insert_text("; $Id: odin32.e,v 1. 1 2000-01-23 03:33:08bird Exp $\n");302 _insert_text("; \n"); 303 _insert_text("; \n"); 304 _insert_text("; \n"); 305 _insert_text("; Copyright (c) " odin32_year() " "sOdin32UserName" \n");305 _insert_text("; $Id: odin32.e,v 1.2 2000-01-28 14:53:53 bird Exp $\n"); 306 _insert_text("; \n"); 307 _insert_text("; \n"); 308 _insert_text("; \n"); 309 _insert_text("; Copyright (c) " odin32_year() " "sOdin32UserName" (" sOdin32UserEmail ")\n"); 306 310 _insert_text("; \n"); 307 311 _insert_text("; Project Odin Software License can be found in LICENSE.TXT\n"); … … 312 316 else 313 317 { 314 _insert_text("/* $Id: odin32.e,v 1. 1 2000-01-23 03:33:08bird Exp $\n");318 _insert_text("/* $Id: odin32.e,v 1.2 2000-01-28 14:53:53 bird Exp $\n"); 315 319 _insert_text(" * \n"); 316 320 _insert_text(" * \n"); 317 321 _insert_text(" * \n"); 318 _insert_text(" * Copyright (c) " odin32_year() " "sOdin32UserName" \n");322 _insert_text(" * Copyright (c) " odin32_year() " "sOdin32UserName" (" sOdin32UserEmail ")\n"); 319 323 _insert_text(" *\n"); 320 324 _insert_text(" * Project Odin Software License can be found in LICENSE.TXT\n");
Note:
See TracChangeset
for help on using the changeset viewer.