--- title: "MISC" type: "article" slug: "misc" url: "http://localhost/article/misc/" markdown_url: "http://localhost/article/misc.md" published_at: "2023-04-04T00:15:45+00:00" modified_at: "2025-10-26T00:26:45+00:00" featured_image: url: "http://localhost/wp-content/uploads/2022/04/20230809-041332.jpg" excerpt: "At the end of line 5040 there is a delay loop in some versions which I have found to be unnecessary in my experience. You can simply delete the section which reads: : FOR X=1 TO 5: NEXT X Also, the routine for editing new or old files seems to work better with the following…" category: - name: "Extensions" slug: "extensions" taxonomy: "category" url: "http://localhost/category/periodicals/extensions/" post_tag: - name: "Pro/File 2068" slug: "pro-file-2068" taxonomy: "post_tag" url: "http://localhost/tag/pro-file-2068/" - name: "TS 2068" slug: "ts2068" taxonomy: "post_tag" url: "http://localhost/tag/ts2068/" - name: "Type-in program" slug: "type-in-program" taxonomy: "post_tag" url: "http://localhost/tag/type-in-program/" model: - name: "Timex/Sinclair 2068" slug: "ts-2068" taxonomy: "model" url: "http://localhost/model/ts-2068/" indiv: - name: "Robert Fischer" slug: "robert-fischer" taxonomy: "indiv" url: "http://localhost/indiv/robert-fischer/" publication_r: id: 39138 title: "Extensions" type: "periodical" url: "http://localhost/periodical/extensions/" authors: "Robert Fischer" authors_r: - name: "Robert Fischer" slug: "robert-fischer" taxonomy: "indiv" url: "http://localhost/indiv/robert-fischer/" issue: "1" issues_articles: - id: 49306 title: "Extensions issue 1" type: "issue" url: "http://localhost/issue/extensions/" pages: "8" product_reviews: - id: 13646 title: "Pro/File 2068" type: "product" url: "http://localhost/product/pro-file-2068-2/" archive_link: false --- # MISC At the end of line 5040 there is a delay loop in some versions which I have found to be unnecessary in my experience. You can simply delete the section which reads: ``` : FOR X=1 TO 5: NEXT X ``` Also, the routine for editing new or old files seems to work better with the following change: ``` 5016 LET Y$=INKEY$: IF Y$>=" STEP " THEN ON ERR RESET: FLASH 0: GO TO 6000 5020 BEEP E/1000,40: FLASH 0: PRINT AT L,C;SCREEN$ (L,C): IF CODE Y$<16 THEN GO TO 5100+CODE Y$ ``` That should cut down on the problem of hitting a key and having nothing appear on the ADD/EDIT screen.