├── .cvsignore ├── .gitignore ├── COPYRIGHT ├── ChangeLog ├── Makefile ├── Microline ├── Makefile ├── XmL │ ├── Folder.c │ ├── Folder.h │ ├── FolderP.h │ ├── Grid.c │ ├── Grid.h │ ├── GridP.h │ ├── GridUtil.c │ ├── Makefile │ ├── Makefile.common │ ├── Makefile.dependencies │ ├── Makefile.in │ ├── Progress.c │ ├── Progress.h │ ├── ProgressP.h │ ├── Tree.c │ ├── Tree.h │ ├── TreeP.h │ ├── XmL.c │ ├── XmL.h │ └── XmL.uih ├── examples │ ├── Makefile │ ├── Makefile.in │ ├── demo.c │ ├── folder1.c │ ├── folder2.c │ ├── folder3.c │ ├── folder4.c │ ├── grid1.c │ ├── grid2.c │ ├── grid3.c │ ├── grid4.c │ ├── grid5.c │ ├── grid6.c │ ├── prog1.c │ ├── prog2.c │ ├── prog3.c │ ├── tree1.c │ ├── tree2.c │ ├── tree3.c │ ├── tree4.c │ ├── tree5.c │ ├── uil1.c │ ├── uil1.uil │ └── util1.c └── man │ ├── XmLArrayAdd.3x │ ├── XmLArrayDel.3x │ ├── XmLArrayFree.3x │ ├── XmLArrayGet.3x │ ├── XmLArrayGetCount.3x │ ├── XmLArrayMove.3x │ ├── XmLArrayNew.3x │ ├── XmLArrayReorder.3x │ ├── XmLArraySet.3x │ ├── XmLArraySort.3x │ ├── XmLCreateFolder.3x │ ├── XmLCreateGrid.3x │ ├── XmLCreateProgress.3x │ ├── XmLCreateTree.3x │ ├── XmLCvtStringToUChar.3x │ ├── XmLDateDaysInMonth.3x │ ├── XmLDateWeekDay.3x │ ├── XmLDrawnButtonSetType.3x │ ├── XmLFolder.3x │ ├── XmLFolderAddBitmapTab.3x │ ├── XmLFolderAddBitmapTabForm.3x │ ├── XmLFolderAddTab.3x │ ├── XmLFolderAddTabForm.3x │ ├── XmLFolderSetActiveTab.3x │ ├── XmLFontListCopyDefault.3x │ ├── XmLFontListGetDimensions.3x │ ├── XmLGrid.3x │ ├── XmLGridAddColumns.3x │ ├── XmLGridAddRows.3x │ ├── XmLGridColumnIsVisible.3x │ ├── XmLGridCopyPos.3x │ ├── XmLGridCopySelected.3x │ ├── XmLGridDeleteAllColumns.3x │ ├── XmLGridDeleteAllRows.3x │ ├── XmLGridDeleteColumns.3x │ ├── XmLGridDeleteRows.3x │ ├── XmLGridDeselectAllCells.3x │ ├── XmLGridDeselectAllColumns.3x │ ├── XmLGridDeselectAllRows.3x │ ├── XmLGridDeselectCell.3x │ ├── XmLGridDeselectColumn.3x │ ├── XmLGridDeselectRow.3x │ ├── XmLGridEditBegin.3x │ ├── XmLGridEditCancel.3x │ ├── XmLGridEditComplete.3x │ ├── XmLGridGetColumn.3x │ ├── XmLGridGetFocus.3x │ ├── XmLGridGetRow.3x │ ├── XmLGridGetSelectedCellCount.3x │ ├── XmLGridGetSelectedCells.3x │ ├── XmLGridGetSelectedColumnCount.3x │ ├── XmLGridGetSelectedColumns.3x │ ├── XmLGridGetSelectedRow.3x │ ├── XmLGridGetSelectedRowCount.3x │ ├── XmLGridGetSelectedRows.3x │ ├── XmLGridMoveColumns.3x │ ├── XmLGridMoveRows.3x │ ├── XmLGridPaste.3x │ ├── XmLGridPastePos.3x │ ├── XmLGridRead.3x │ ├── XmLGridReadPos.3x │ ├── XmLGridRedrawAll.3x │ ├── XmLGridRedrawCell.3x │ ├── XmLGridRedrawColumn.3x │ ├── XmLGridRedrawRow.3x │ ├── XmLGridReorderColumns.3x │ ├── XmLGridReorderRows.3x │ ├── XmLGridRowColumnToXY.3x │ ├── XmLGridRowIsVisible.3x │ ├── XmLGridSelectAllCells.3x │ ├── XmLGridSelectAllColumns.3x │ ├── XmLGridSelectAllRows.3x │ ├── XmLGridSelectCell.3x │ ├── XmLGridSelectColumn.3x │ ├── XmLGridSelectRow.3x │ ├── XmLGridSetFocus.3x │ ├── XmLGridSetStrings.3x │ ├── XmLGridSetStringsPos.3x │ ├── XmLGridWrite.3x │ ├── XmLGridWritePos.3x │ ├── XmLGridXYToRowColumn.3x │ ├── XmLMessageBox.3x │ ├── XmLPixmapDraw.3x │ ├── XmLProgress.3x │ ├── XmLRectIntersect.3x │ ├── XmLShellOfWidget.3x │ ├── XmLSort.3x │ ├── XmLStringDraw.3x │ ├── XmLStringDrawDirection.3x │ ├── XmLTree.3x │ ├── XmLTreeAddRow.3x │ ├── XmLTreeAddRows.3x │ └── XmLWarning.3x ├── README ├── ReleaseNotes ├── Xlt ├── BubbleButton.c ├── BubbleButton.h ├── BubbleButtonP.h ├── Makefile ├── Makefile.common ├── Makefile.dependencies ├── SlideC.c ├── SlideC.h └── SlideCP.h ├── doc ├── .cvsignore ├── Makefile ├── NEdit.ad ├── README.FAQ ├── faq-txt-pass2.xsl ├── faq-txt.awk ├── faq-txt.dtd ├── faq-txt.xsl ├── faq.dtd ├── faq.txt ├── faq.xml ├── faq.xsl ├── help.etx ├── nc.pod ├── nedit.pod ├── setext └── setext-info.txt ├── makefiles ├── Makefile.aix ├── Makefile.bsdi ├── Makefile.ccur ├── Makefile.convex ├── Makefile.cygwin ├── Makefile.dcosx ├── Makefile.dec ├── Makefile.depend ├── Makefile.freebsd ├── Makefile.generic ├── Makefile.hpux ├── Makefile.linux ├── Makefile.linux-static ├── Makefile.lynx ├── Makefile.m88k.svr4 ├── Makefile.macosx ├── Makefile.minix ├── Makefile.netbsd ├── Makefile.openbsd ├── Makefile.os2 ├── Makefile.osf ├── Makefile.qnx ├── Makefile.reliant ├── Makefile.sco ├── Makefile.sgi ├── Makefile.solaris ├── Makefile.solarisx86 ├── Makefile.sunos ├── Makefile.superux ├── Makefile.uhc ├── Makefile.ultrix ├── Makefile.unicos ├── Makefile.unixware └── buildvms.com ├── source ├── .cvsignore ├── Makefile.common ├── Makefile.dependencies ├── calltips.c ├── calltips.h ├── file.c ├── file.h ├── help.c ├── help.h ├── help_data.h ├── help_topic.h ├── highlight.c ├── highlight.h ├── highlightData.c ├── highlightData.h ├── interpret.c ├── interpret.h ├── linkdate.c ├── macro.c ├── macro.h ├── menu.c ├── menu.h ├── n.bm ├── nc.c ├── nedit.bm ├── nedit.c ├── nedit.h ├── nedit_options_file.opt ├── parse.h ├── parse.y ├── parse_noyacc.c ├── preferences.c ├── preferences.h ├── rangeset.c ├── rangeset.h ├── regexConvert.c ├── regexConvert.h ├── regularExp.c ├── regularExp.h ├── search.c ├── search.h ├── selection.c ├── selection.h ├── server.c ├── server.h ├── server_common.c ├── server_common.h ├── shell.c ├── shell.h ├── shift.c ├── shift.h ├── smartIndent.c ├── smartIndent.h ├── tags.c ├── tags.h ├── text.c ├── text.h ├── textBuf.c ├── textBuf.h ├── textDisp.c ├── textDisp.h ├── textDrag.c ├── textDrag.h ├── textP.h ├── textSel.c ├── textSel.h ├── undo.c ├── undo.h ├── userCmds.c ├── userCmds.h ├── window.c ├── window.h ├── windowTitle.c └── windowTitle.h └── util ├── .cvsignore ├── DialogF.c ├── DialogF.h ├── Makefile.common ├── Makefile.dependencies ├── clearcase.c ├── clearcase.h ├── fileUtils.c ├── fileUtils.h ├── fontsel.c ├── fontsel.h ├── getfiles.c ├── getfiles.h ├── managedList.c ├── managedList.h ├── misc.c ├── misc.h ├── motif.c ├── motif.h ├── nedit_malloc.c ├── nedit_malloc.h ├── prefFile.c ├── prefFile.h ├── printUtils.c ├── printUtils.h ├── rbTree.c ├── rbTree.h ├── refString.c ├── refString.h ├── system.h ├── utils.c ├── utils.h ├── vmsParam.h ├── vmsUtils.c └── vmsUtils.h /.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/.cvsignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Makefile -------------------------------------------------------------------------------- /Microline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/Makefile -------------------------------------------------------------------------------- /Microline/XmL/Folder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/Folder.c -------------------------------------------------------------------------------- /Microline/XmL/Folder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/Folder.h -------------------------------------------------------------------------------- /Microline/XmL/FolderP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/FolderP.h -------------------------------------------------------------------------------- /Microline/XmL/Grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/Grid.c -------------------------------------------------------------------------------- /Microline/XmL/Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/Grid.h -------------------------------------------------------------------------------- /Microline/XmL/GridP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/GridP.h -------------------------------------------------------------------------------- /Microline/XmL/GridUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/GridUtil.c -------------------------------------------------------------------------------- /Microline/XmL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/Makefile -------------------------------------------------------------------------------- /Microline/XmL/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/Makefile.common -------------------------------------------------------------------------------- /Microline/XmL/Makefile.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/Makefile.dependencies -------------------------------------------------------------------------------- /Microline/XmL/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/Makefile.in -------------------------------------------------------------------------------- /Microline/XmL/Progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/Progress.c -------------------------------------------------------------------------------- /Microline/XmL/Progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/Progress.h -------------------------------------------------------------------------------- /Microline/XmL/ProgressP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/ProgressP.h -------------------------------------------------------------------------------- /Microline/XmL/Tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/Tree.c -------------------------------------------------------------------------------- /Microline/XmL/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/Tree.h -------------------------------------------------------------------------------- /Microline/XmL/TreeP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/TreeP.h -------------------------------------------------------------------------------- /Microline/XmL/XmL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/XmL.c -------------------------------------------------------------------------------- /Microline/XmL/XmL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/XmL.h -------------------------------------------------------------------------------- /Microline/XmL/XmL.uih: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/XmL/XmL.uih -------------------------------------------------------------------------------- /Microline/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/Makefile -------------------------------------------------------------------------------- /Microline/examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/Makefile.in -------------------------------------------------------------------------------- /Microline/examples/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/demo.c -------------------------------------------------------------------------------- /Microline/examples/folder1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/folder1.c -------------------------------------------------------------------------------- /Microline/examples/folder2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/folder2.c -------------------------------------------------------------------------------- /Microline/examples/folder3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/folder3.c -------------------------------------------------------------------------------- /Microline/examples/folder4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/folder4.c -------------------------------------------------------------------------------- /Microline/examples/grid1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/grid1.c -------------------------------------------------------------------------------- /Microline/examples/grid2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/grid2.c -------------------------------------------------------------------------------- /Microline/examples/grid3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/grid3.c -------------------------------------------------------------------------------- /Microline/examples/grid4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/grid4.c -------------------------------------------------------------------------------- /Microline/examples/grid5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/grid5.c -------------------------------------------------------------------------------- /Microline/examples/grid6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/grid6.c -------------------------------------------------------------------------------- /Microline/examples/prog1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/prog1.c -------------------------------------------------------------------------------- /Microline/examples/prog2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/prog2.c -------------------------------------------------------------------------------- /Microline/examples/prog3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/prog3.c -------------------------------------------------------------------------------- /Microline/examples/tree1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/tree1.c -------------------------------------------------------------------------------- /Microline/examples/tree2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/tree2.c -------------------------------------------------------------------------------- /Microline/examples/tree3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/tree3.c -------------------------------------------------------------------------------- /Microline/examples/tree4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/tree4.c -------------------------------------------------------------------------------- /Microline/examples/tree5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/tree5.c -------------------------------------------------------------------------------- /Microline/examples/uil1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/uil1.c -------------------------------------------------------------------------------- /Microline/examples/uil1.uil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/uil1.uil -------------------------------------------------------------------------------- /Microline/examples/util1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/examples/util1.c -------------------------------------------------------------------------------- /Microline/man/XmLArrayAdd.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLArrayAdd.3x -------------------------------------------------------------------------------- /Microline/man/XmLArrayDel.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLArrayDel.3x -------------------------------------------------------------------------------- /Microline/man/XmLArrayFree.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLArrayFree.3x -------------------------------------------------------------------------------- /Microline/man/XmLArrayGet.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLArrayGet.3x -------------------------------------------------------------------------------- /Microline/man/XmLArrayGetCount.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLArrayGetCount.3x -------------------------------------------------------------------------------- /Microline/man/XmLArrayMove.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLArrayMove.3x -------------------------------------------------------------------------------- /Microline/man/XmLArrayNew.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLArrayNew.3x -------------------------------------------------------------------------------- /Microline/man/XmLArrayReorder.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLArrayReorder.3x -------------------------------------------------------------------------------- /Microline/man/XmLArraySet.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLArraySet.3x -------------------------------------------------------------------------------- /Microline/man/XmLArraySort.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLArraySort.3x -------------------------------------------------------------------------------- /Microline/man/XmLCreateFolder.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLCreateFolder.3x -------------------------------------------------------------------------------- /Microline/man/XmLCreateGrid.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLCreateGrid.3x -------------------------------------------------------------------------------- /Microline/man/XmLCreateProgress.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLCreateProgress.3x -------------------------------------------------------------------------------- /Microline/man/XmLCreateTree.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLCreateTree.3x -------------------------------------------------------------------------------- /Microline/man/XmLCvtStringToUChar.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLCvtStringToUChar.3x -------------------------------------------------------------------------------- /Microline/man/XmLDateDaysInMonth.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLDateDaysInMonth.3x -------------------------------------------------------------------------------- /Microline/man/XmLDateWeekDay.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLDateWeekDay.3x -------------------------------------------------------------------------------- /Microline/man/XmLDrawnButtonSetType.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLDrawnButtonSetType.3x -------------------------------------------------------------------------------- /Microline/man/XmLFolder.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLFolder.3x -------------------------------------------------------------------------------- /Microline/man/XmLFolderAddBitmapTab.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLFolderAddBitmapTab.3x -------------------------------------------------------------------------------- /Microline/man/XmLFolderAddBitmapTabForm.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLFolderAddBitmapTabForm.3x -------------------------------------------------------------------------------- /Microline/man/XmLFolderAddTab.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLFolderAddTab.3x -------------------------------------------------------------------------------- /Microline/man/XmLFolderAddTabForm.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLFolderAddTabForm.3x -------------------------------------------------------------------------------- /Microline/man/XmLFolderSetActiveTab.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLFolderSetActiveTab.3x -------------------------------------------------------------------------------- /Microline/man/XmLFontListCopyDefault.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLFontListCopyDefault.3x -------------------------------------------------------------------------------- /Microline/man/XmLFontListGetDimensions.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLFontListGetDimensions.3x -------------------------------------------------------------------------------- /Microline/man/XmLGrid.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGrid.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridAddColumns.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridAddColumns.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridAddRows.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridAddRows.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridColumnIsVisible.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridColumnIsVisible.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridCopyPos.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridCopyPos.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridCopySelected.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridCopySelected.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridDeleteAllColumns.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridDeleteAllColumns.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridDeleteAllRows.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridDeleteAllRows.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridDeleteColumns.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridDeleteColumns.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridDeleteRows.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridDeleteRows.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridDeselectAllCells.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridDeselectAllCells.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridDeselectAllColumns.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridDeselectAllColumns.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridDeselectAllRows.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridDeselectAllRows.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridDeselectCell.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridDeselectCell.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridDeselectColumn.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridDeselectColumn.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridDeselectRow.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridDeselectRow.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridEditBegin.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridEditBegin.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridEditCancel.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridEditCancel.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridEditComplete.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridEditComplete.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridGetColumn.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridGetColumn.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridGetFocus.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridGetFocus.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridGetRow.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridGetRow.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridGetSelectedCellCount.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridGetSelectedCellCount.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridGetSelectedCells.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridGetSelectedCells.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridGetSelectedColumnCount.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridGetSelectedColumnCount.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridGetSelectedColumns.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridGetSelectedColumns.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridGetSelectedRow.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridGetSelectedRow.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridGetSelectedRowCount.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridGetSelectedRowCount.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridGetSelectedRows.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridGetSelectedRows.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridMoveColumns.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridMoveColumns.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridMoveRows.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridMoveRows.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridPaste.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridPaste.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridPastePos.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridPastePos.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridRead.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridRead.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridReadPos.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridReadPos.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridRedrawAll.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridRedrawAll.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridRedrawCell.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridRedrawCell.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridRedrawColumn.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridRedrawColumn.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridRedrawRow.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridRedrawRow.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridReorderColumns.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridReorderColumns.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridReorderRows.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridReorderRows.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridRowColumnToXY.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridRowColumnToXY.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridRowIsVisible.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridRowIsVisible.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridSelectAllCells.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridSelectAllCells.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridSelectAllColumns.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridSelectAllColumns.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridSelectAllRows.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridSelectAllRows.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridSelectCell.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridSelectCell.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridSelectColumn.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridSelectColumn.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridSelectRow.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridSelectRow.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridSetFocus.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridSetFocus.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridSetStrings.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridSetStrings.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridSetStringsPos.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridSetStringsPos.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridWrite.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridWrite.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridWritePos.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridWritePos.3x -------------------------------------------------------------------------------- /Microline/man/XmLGridXYToRowColumn.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLGridXYToRowColumn.3x -------------------------------------------------------------------------------- /Microline/man/XmLMessageBox.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLMessageBox.3x -------------------------------------------------------------------------------- /Microline/man/XmLPixmapDraw.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLPixmapDraw.3x -------------------------------------------------------------------------------- /Microline/man/XmLProgress.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLProgress.3x -------------------------------------------------------------------------------- /Microline/man/XmLRectIntersect.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLRectIntersect.3x -------------------------------------------------------------------------------- /Microline/man/XmLShellOfWidget.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLShellOfWidget.3x -------------------------------------------------------------------------------- /Microline/man/XmLSort.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLSort.3x -------------------------------------------------------------------------------- /Microline/man/XmLStringDraw.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLStringDraw.3x -------------------------------------------------------------------------------- /Microline/man/XmLStringDrawDirection.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLStringDrawDirection.3x -------------------------------------------------------------------------------- /Microline/man/XmLTree.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLTree.3x -------------------------------------------------------------------------------- /Microline/man/XmLTreeAddRow.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLTreeAddRow.3x -------------------------------------------------------------------------------- /Microline/man/XmLTreeAddRows.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLTreeAddRows.3x -------------------------------------------------------------------------------- /Microline/man/XmLWarning.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Microline/man/XmLWarning.3x -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/README -------------------------------------------------------------------------------- /ReleaseNotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/ReleaseNotes -------------------------------------------------------------------------------- /Xlt/BubbleButton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Xlt/BubbleButton.c -------------------------------------------------------------------------------- /Xlt/BubbleButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Xlt/BubbleButton.h -------------------------------------------------------------------------------- /Xlt/BubbleButtonP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Xlt/BubbleButtonP.h -------------------------------------------------------------------------------- /Xlt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Xlt/Makefile -------------------------------------------------------------------------------- /Xlt/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Xlt/Makefile.common -------------------------------------------------------------------------------- /Xlt/Makefile.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Xlt/Makefile.dependencies -------------------------------------------------------------------------------- /Xlt/SlideC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Xlt/SlideC.c -------------------------------------------------------------------------------- /Xlt/SlideC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Xlt/SlideC.h -------------------------------------------------------------------------------- /Xlt/SlideCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/Xlt/SlideCP.h -------------------------------------------------------------------------------- /doc/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/doc/.cvsignore -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/NEdit.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/doc/NEdit.ad -------------------------------------------------------------------------------- /doc/README.FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/doc/README.FAQ -------------------------------------------------------------------------------- /doc/faq-txt-pass2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/doc/faq-txt-pass2.xsl -------------------------------------------------------------------------------- /doc/faq-txt.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/doc/faq-txt.awk -------------------------------------------------------------------------------- /doc/faq-txt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/doc/faq-txt.dtd -------------------------------------------------------------------------------- /doc/faq-txt.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/doc/faq-txt.xsl -------------------------------------------------------------------------------- /doc/faq.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/doc/faq.dtd -------------------------------------------------------------------------------- /doc/faq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/doc/faq.txt -------------------------------------------------------------------------------- /doc/faq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/doc/faq.xml -------------------------------------------------------------------------------- /doc/faq.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/doc/faq.xsl -------------------------------------------------------------------------------- /doc/help.etx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/doc/help.etx -------------------------------------------------------------------------------- /doc/nc.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/doc/nc.pod -------------------------------------------------------------------------------- /doc/nedit.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/doc/nedit.pod -------------------------------------------------------------------------------- /doc/setext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/doc/setext -------------------------------------------------------------------------------- /doc/setext-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/doc/setext-info.txt -------------------------------------------------------------------------------- /makefiles/Makefile.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.aix -------------------------------------------------------------------------------- /makefiles/Makefile.bsdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.bsdi -------------------------------------------------------------------------------- /makefiles/Makefile.ccur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.ccur -------------------------------------------------------------------------------- /makefiles/Makefile.convex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.convex -------------------------------------------------------------------------------- /makefiles/Makefile.cygwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.cygwin -------------------------------------------------------------------------------- /makefiles/Makefile.dcosx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.dcosx -------------------------------------------------------------------------------- /makefiles/Makefile.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.dec -------------------------------------------------------------------------------- /makefiles/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.depend -------------------------------------------------------------------------------- /makefiles/Makefile.freebsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.freebsd -------------------------------------------------------------------------------- /makefiles/Makefile.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.generic -------------------------------------------------------------------------------- /makefiles/Makefile.hpux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.hpux -------------------------------------------------------------------------------- /makefiles/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.linux -------------------------------------------------------------------------------- /makefiles/Makefile.linux-static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.linux-static -------------------------------------------------------------------------------- /makefiles/Makefile.lynx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.lynx -------------------------------------------------------------------------------- /makefiles/Makefile.m88k.svr4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.m88k.svr4 -------------------------------------------------------------------------------- /makefiles/Makefile.macosx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.macosx -------------------------------------------------------------------------------- /makefiles/Makefile.minix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.minix -------------------------------------------------------------------------------- /makefiles/Makefile.netbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.netbsd -------------------------------------------------------------------------------- /makefiles/Makefile.openbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.openbsd -------------------------------------------------------------------------------- /makefiles/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.os2 -------------------------------------------------------------------------------- /makefiles/Makefile.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.osf -------------------------------------------------------------------------------- /makefiles/Makefile.qnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.qnx -------------------------------------------------------------------------------- /makefiles/Makefile.reliant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.reliant -------------------------------------------------------------------------------- /makefiles/Makefile.sco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.sco -------------------------------------------------------------------------------- /makefiles/Makefile.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.sgi -------------------------------------------------------------------------------- /makefiles/Makefile.solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.solaris -------------------------------------------------------------------------------- /makefiles/Makefile.solarisx86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.solarisx86 -------------------------------------------------------------------------------- /makefiles/Makefile.sunos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.sunos -------------------------------------------------------------------------------- /makefiles/Makefile.superux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.superux -------------------------------------------------------------------------------- /makefiles/Makefile.uhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.uhc -------------------------------------------------------------------------------- /makefiles/Makefile.ultrix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.ultrix -------------------------------------------------------------------------------- /makefiles/Makefile.unicos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.unicos -------------------------------------------------------------------------------- /makefiles/Makefile.unixware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/Makefile.unixware -------------------------------------------------------------------------------- /makefiles/buildvms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/makefiles/buildvms.com -------------------------------------------------------------------------------- /source/.cvsignore: -------------------------------------------------------------------------------- 1 | nc 2 | nedit 3 | parse.c 4 | -------------------------------------------------------------------------------- /source/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/Makefile.common -------------------------------------------------------------------------------- /source/Makefile.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/Makefile.dependencies -------------------------------------------------------------------------------- /source/calltips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/calltips.c -------------------------------------------------------------------------------- /source/calltips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/calltips.h -------------------------------------------------------------------------------- /source/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/file.c -------------------------------------------------------------------------------- /source/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/file.h -------------------------------------------------------------------------------- /source/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/help.c -------------------------------------------------------------------------------- /source/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/help.h -------------------------------------------------------------------------------- /source/help_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/help_data.h -------------------------------------------------------------------------------- /source/help_topic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/help_topic.h -------------------------------------------------------------------------------- /source/highlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/highlight.c -------------------------------------------------------------------------------- /source/highlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/highlight.h -------------------------------------------------------------------------------- /source/highlightData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/highlightData.c -------------------------------------------------------------------------------- /source/highlightData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/highlightData.h -------------------------------------------------------------------------------- /source/interpret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/interpret.c -------------------------------------------------------------------------------- /source/interpret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/interpret.h -------------------------------------------------------------------------------- /source/linkdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/linkdate.c -------------------------------------------------------------------------------- /source/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/macro.c -------------------------------------------------------------------------------- /source/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/macro.h -------------------------------------------------------------------------------- /source/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/menu.c -------------------------------------------------------------------------------- /source/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/menu.h -------------------------------------------------------------------------------- /source/n.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/n.bm -------------------------------------------------------------------------------- /source/nc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/nc.c -------------------------------------------------------------------------------- /source/nedit.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/nedit.bm -------------------------------------------------------------------------------- /source/nedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/nedit.c -------------------------------------------------------------------------------- /source/nedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/nedit.h -------------------------------------------------------------------------------- /source/nedit_options_file.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/nedit_options_file.opt -------------------------------------------------------------------------------- /source/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/parse.h -------------------------------------------------------------------------------- /source/parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/parse.y -------------------------------------------------------------------------------- /source/parse_noyacc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/parse_noyacc.c -------------------------------------------------------------------------------- /source/preferences.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/preferences.c -------------------------------------------------------------------------------- /source/preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/preferences.h -------------------------------------------------------------------------------- /source/rangeset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/rangeset.c -------------------------------------------------------------------------------- /source/rangeset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/rangeset.h -------------------------------------------------------------------------------- /source/regexConvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/regexConvert.c -------------------------------------------------------------------------------- /source/regexConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/regexConvert.h -------------------------------------------------------------------------------- /source/regularExp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/regularExp.c -------------------------------------------------------------------------------- /source/regularExp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/regularExp.h -------------------------------------------------------------------------------- /source/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/search.c -------------------------------------------------------------------------------- /source/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/search.h -------------------------------------------------------------------------------- /source/selection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/selection.c -------------------------------------------------------------------------------- /source/selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/selection.h -------------------------------------------------------------------------------- /source/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/server.c -------------------------------------------------------------------------------- /source/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/server.h -------------------------------------------------------------------------------- /source/server_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/server_common.c -------------------------------------------------------------------------------- /source/server_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/server_common.h -------------------------------------------------------------------------------- /source/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/shell.c -------------------------------------------------------------------------------- /source/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/shell.h -------------------------------------------------------------------------------- /source/shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/shift.c -------------------------------------------------------------------------------- /source/shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/shift.h -------------------------------------------------------------------------------- /source/smartIndent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/smartIndent.c -------------------------------------------------------------------------------- /source/smartIndent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/smartIndent.h -------------------------------------------------------------------------------- /source/tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/tags.c -------------------------------------------------------------------------------- /source/tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/tags.h -------------------------------------------------------------------------------- /source/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/text.c -------------------------------------------------------------------------------- /source/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/text.h -------------------------------------------------------------------------------- /source/textBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/textBuf.c -------------------------------------------------------------------------------- /source/textBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/textBuf.h -------------------------------------------------------------------------------- /source/textDisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/textDisp.c -------------------------------------------------------------------------------- /source/textDisp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/textDisp.h -------------------------------------------------------------------------------- /source/textDrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/textDrag.c -------------------------------------------------------------------------------- /source/textDrag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/textDrag.h -------------------------------------------------------------------------------- /source/textP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/textP.h -------------------------------------------------------------------------------- /source/textSel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/textSel.c -------------------------------------------------------------------------------- /source/textSel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/textSel.h -------------------------------------------------------------------------------- /source/undo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/undo.c -------------------------------------------------------------------------------- /source/undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/undo.h -------------------------------------------------------------------------------- /source/userCmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/userCmds.c -------------------------------------------------------------------------------- /source/userCmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/userCmds.h -------------------------------------------------------------------------------- /source/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/window.c -------------------------------------------------------------------------------- /source/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/window.h -------------------------------------------------------------------------------- /source/windowTitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/windowTitle.c -------------------------------------------------------------------------------- /source/windowTitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/source/windowTitle.h -------------------------------------------------------------------------------- /util/.cvsignore: -------------------------------------------------------------------------------- 1 | libNUtil.a 2 | check_lin_tif 3 | -------------------------------------------------------------------------------- /util/DialogF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/DialogF.c -------------------------------------------------------------------------------- /util/DialogF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/DialogF.h -------------------------------------------------------------------------------- /util/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/Makefile.common -------------------------------------------------------------------------------- /util/Makefile.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/Makefile.dependencies -------------------------------------------------------------------------------- /util/clearcase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/clearcase.c -------------------------------------------------------------------------------- /util/clearcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/clearcase.h -------------------------------------------------------------------------------- /util/fileUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/fileUtils.c -------------------------------------------------------------------------------- /util/fileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/fileUtils.h -------------------------------------------------------------------------------- /util/fontsel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/fontsel.c -------------------------------------------------------------------------------- /util/fontsel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/fontsel.h -------------------------------------------------------------------------------- /util/getfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/getfiles.c -------------------------------------------------------------------------------- /util/getfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/getfiles.h -------------------------------------------------------------------------------- /util/managedList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/managedList.c -------------------------------------------------------------------------------- /util/managedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/managedList.h -------------------------------------------------------------------------------- /util/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/misc.c -------------------------------------------------------------------------------- /util/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/misc.h -------------------------------------------------------------------------------- /util/motif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/motif.c -------------------------------------------------------------------------------- /util/motif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/motif.h -------------------------------------------------------------------------------- /util/nedit_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/nedit_malloc.c -------------------------------------------------------------------------------- /util/nedit_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/nedit_malloc.h -------------------------------------------------------------------------------- /util/prefFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/prefFile.c -------------------------------------------------------------------------------- /util/prefFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/prefFile.h -------------------------------------------------------------------------------- /util/printUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/printUtils.c -------------------------------------------------------------------------------- /util/printUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/printUtils.h -------------------------------------------------------------------------------- /util/rbTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/rbTree.c -------------------------------------------------------------------------------- /util/rbTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/rbTree.h -------------------------------------------------------------------------------- /util/refString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/refString.c -------------------------------------------------------------------------------- /util/refString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/refString.h -------------------------------------------------------------------------------- /util/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/system.h -------------------------------------------------------------------------------- /util/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/utils.c -------------------------------------------------------------------------------- /util/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/utils.h -------------------------------------------------------------------------------- /util/vmsParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/vmsParam.h -------------------------------------------------------------------------------- /util/vmsUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/vmsUtils.c -------------------------------------------------------------------------------- /util/vmsUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaumZeit/nedit/HEAD/util/vmsUtils.h --------------------------------------------------------------------------------