summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-07-01config: upgrade to util-macros 1.8 for additional man page supportAlan Coopersmith2-23/+5
Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS The value of MAN_SUBST is the same for all X.Org packages. Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS The existing statement can now be removed from the configuration file. Use automake provided $(AM_V_GEN) and XORG_DEFAULT_OPTIONS provided $(SED) Enables silent rule and use platform appropriate version of sed. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-03-26xprint: remove conditionally defined related C codeGaetan Nadon3-144/+0
Reviewed-by: Jeremy Huddleston <jeremyhu@freedestop.org> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-03-25xprint: remove xprint related C codeGaetan Nadon5-2139/+0
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-03-25xprint: remove Xedit-xprint resource fileGaetan Nadon4-570/+1
Remove configuration regarding xprint support Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-03-25config: remove dependency on xaw8Gaetan Nadon2-23/+3
Remove configure option --enable-xprint Remove AM conditional USE_XPRINT Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2009-12-19configure.ac: use backticks rather than $() for cmd subsGaetan Nadon1-1/+1
Use "$PKG_CONFIG" rather than hard coded "pkg-config" Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2009-11-26Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILESGaetan Nadon1-0/+1
Now that the INSTALL file is generated. Allows running make maintainer-clean.
2009-10-28INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206Gaetan Nadon4-3/+6
Add missing INSTALL file. Use standard GNU file on building tarball README may have been updated Remove AUTHORS file as it is empty and no content available yet. Remove NEWS file as it is empty and no content available yet.
2009-10-27Deploy the new XORG_DEFAULT_OPTIONS #24242Gaetan Nadon1-7/+5
This macro aggregate a number of existing macros that sets commmon X.Org components configuration options. It shields the configuration file from future changes.
2009-10-26Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432Gaetan Nadon1-2/+0
ChangeLog filename is known to Automake and requires no further coding in the makefile.
2009-10-22.gitignore: use common defaults with custom section # 24239Gaetan Nadon4-15/+74
Using common defaults will reduce errors and maintenance. Only the very small or inexistent custom section need periodic maintenance when the structure of the component changes. Do not edit defaults.
2009-01-26Set text properties after loading all command line files.Paulo Cesar Pereira de Andrade1-9/+13
This is more of a workaround for a problem where the first file will end up using the "text properties" of the last file with a syntax highlight definition. A more proper correction could be to actually display the last file loaded (and removed the duplicated code in xedit.c:main()).
2009-01-12Correct problems in make distcheck.Paulo Cesar Pereira de Andrade3-1/+12
2008-12-02Use new XORG_CWARNFLAGS and XORG_CHANGELOG macros.Paulo Cesar Pereira de Andrade3-8/+14
Also correct a possible uninitialized variable.
2008-12-02Properly read symbol name in tags interface.Paulo Cesar Pereira de Andrade1-7/+13
If the symbol is not in a full text "Piece", XawTextSourceRead() will return an XawTextBlock that points to an incomplete buffer, and a new call must be made to read the remaining data.
2008-12-02Don't put EOF in the unget buffer.Paulo Cesar Pereira de Andrade1-6/+8
2008-11-16Man page typo fixesA Costa1-2/+2
Debian bug#306707 <http://bugs.debian.org/306707>
2008-11-12Add missing check for symbolic links.Paulo Cesar Pereira de Andrade1-1/+1
It was properly checking when using <tab-completion>+<enter>, but not when using <tab-completion>+<click-on-filename>, what would allow loading the same file with different names (but save would be done to the real file, and not overwrite the link).
2008-11-12reorganize app default filesPeter Breitenlohner5-33/+11
2008-11-10Don't highlight quotes in nested syntax tables for "auto" mode.Paulo Cesar Pereira de Andrade1-6/+7
To properly do it, it should also match the pattern for the macro name, to know if it is a plain text one or not, otherwise, it will get confused with usage of the characters (') and (`).
2008-11-10avoid race condition for parallel jobsPeter Breitenlohner1-3/+8
2008-11-07Xedit version 1.1.2.xedit-1.1.2Paulo Cesar Pereira de Andrade2-2/+2
Also update to use ``git log'' instead of ``git-log'', to match newer versions of git.
2008-11-07enabled VPATH buildPeter Breitenlohner1-0/+3
2008-10-08Rewrite double click confirmation code.Paulo Cesar Pereira de Andrade2-61/+46
Remove the double_click global boolean, and change dc_state to a bit field, instead of a single state variable. The old code was the xedit original code with minimal changes, but was a bit confusing when two confirmations would be required. Also, this patch moves the check for file overwriting before MaybeCreateFile() as it can actually call creat(), what means that it can no longer ask for confirmations, as the file has been just backed up, and a zero sized one created.
2008-09-26Merge branch 'master' of ssh://pcpa@git.freedesktop.org/git/xorg/app/xeditPaulo Cesar Pereira de Andrade5-11/+11
2008-09-26Proper implementation of AddDoubleClickCallbackPaulo Cesar Pereira de Andrade1-18/+4
I tracked it down to http://cvsweb.xfree86.org/cvsweb/xc/programs/xedit/commands.c?rev=1.5&content-type=text/vnd.viewcvs-markup After my patches to libXaw. Instead of checking for "if (XtIsSubclass(w, asciiSrcObjectClass)) {" it should really do something like "if (isXaw7orNewer) {". But I believe only XFree86 and Xorg versions of Xaw have the XawVersion macro in XawInit.h... This corrects the problem described in http://bugs.freedesktop.org/show_bug.cgi?id=17726 And the main reason is that xedit always default'ed to use a 8 bits iso8859-x locale, while in Xorg it was modified to use multibyte by default.
2008-08-04Fixed filename conflict during compilation on case-insensitive file systems.Jeremy Huddleston5-11/+11
2008-07-31Correct make dist and update to xedit-1.1.1.xedit-1.1.1Paulo Cesar Pereira de Andrade2-1/+2
2008-07-30Update to xedit 1.1.0.xedit-1.1.0Paulo Cesar Pereira de Andrade1-1/+1
2008-07-10 Update file type pattern matching.Paulo Cesar Pereira de Andrade1-5/+5
Consider a file ending in .l a lisp source file. Allow an arbitrary number of bytes following the filename for xconf and xlog modes. Don't use make mode for "Imakefile". Require a slash before [Mm]akefile.*.
2008-07-08 CancelFindFile is almost the same as XeditFocus, and could be merged in aPaulo Cesar Pereira de Andrade1-0/+2
same Xt action. For the moment, automatically leave line_edit in XeditFocus. There is one other bug that should be fixed, that I am trying to repeat (having the same file loaded twice when using tags) before a new release. Thre is also a problem in Xaw when deleting large amounts of selections that crashes xedit, aparently due to Xaw Text widget doing some wrong math and attempting to allocate a huge chunk of memory.
2008-07-02Fix an off by one error check that can lead to an infinite loop.Paulo Cesar Pereira de Andrade1-1/+3
This can happen when using the line edit mode to search&replace regexes.
2008-07-02Warn if a newer version of a file exists before overwritting it.Paulo Cesar Pereira de Andrade3-35/+73
2008-07-02Add python mode.Paulo Cesar Pereira de Andrade3-0/+309
This mode adds syntax highlight and automatic indentation. Unlike most other modes with automatic indentation, this mode most only reads one line back to figure the proper indentation. Some features include: o When the first character in a line is typped, it automatically moves it to the proper tab stop. o Increments one indentation level if line ends in ':'. o Properly handle vector/hash table declarations.
2008-07-02Compile warning fixes.Paulo Cesar Pereira de Andrade2-3/+3
Add parenthesis around a test where after macro expansion it looked like boolexpr==boolres==boolres. "Ansifiy" a function without arguments.
2008-07-02Support multiple make jobs.Paulo Cesar Pereira de Andrade1-1/+3
Minor patch to avoid requiring xedit to have some special rule in a buildsystem that defaults to something like "make -j 16".
2008-07-02Fix an incorrect buffer size calculation and allocation.Paulo Cesar Pereira de Andrade1-4/+12
2008-07-02Add perl and "auto tools" modes.Paulo Cesar Pereira de Andrade4-1/+625
Auto mode has only syntax highlight mode; needs some tweaking to ignore "'" characters where they are allowed, i.e. usually descriptions. Perl mode has syntax highlight and indentation support. May need some tweaking for some files where it may parse back too much lines before assuming the indentation is correct.
2008-07-02Add support for scrolling textwindow with mouse wheel.Paulo Cesar Pereira de Andrade2-2/+6
2008-07-02Add a tags interface to xedit.Paulo Cesar Pereira de Andrade7-2/+664
To use the tags, first create a tags file with a command like "ctags -R". The interface can be disabled with resources, see the updated man page. Tag files are searched descending to the root directory. Multiple tags files are properly handled, and multiple symbol definitions can be searched.
2008-07-02Update syntax highlight table and some minor tweaks including:Paulo Cesar Pereira de Andrade4-13/+43
o Don't cause an warning due to an unused variable after macro expansion in some indentation tables. o Properly handle c++ style comments in preprocessor lines. Also highlight strings and character constants. o Change color of "quote" property in lisp mode. This is mainly due to an undesirable side effect of using the same XrmQuark in different syntax highlight definitions, causing the first one to be used, and later defined ones to be ignored.
2008-07-02Add support to enter line number in command line.Paulo Cesar Pereira de Andrade1-3/+23
This works the same way as for vi, i.e. "xedit file +num" will load file and move cursor to line "num".
2008-07-02Generic lisp interface bug fixes including:Paulo Cesar Pereira de Andrade3-8/+15
o Allow calling disassemble in all function types o Don't limit amount of bytes to generate a hash table o Allow "unreadable" symbol names to be keywords
2008-07-02Fix several problems in the line edit mode.Paulo Cesar Pereira de Andrade2-58/+96
Also allow replacing control characters in the replace pattern as well as nul characters.
2008-07-02Fix several generic bugs including:Paulo Cesar Pereira de Andrade5-313/+373
o Several memory read/write errors. o Implement smarter XeditPrintf that will show how many times a text has been printed. o Check all arguments to XeditPrintf to ensure the '%' character cannot be sent to it. o Some minor reindentation to code that still had the original 2 spaces indentation.
2008-07-02Make ispell interface work correctly again.Paulo Cesar Pereira de Andrade1-34/+88
This new interface should work properly with asciiSrc and multiSrc widgets, i.e. single byte and multibyte. Also added an empty dictionary entry that is understood by aspell as the "default" dictionary. Code is also more robust to detect aspell exiting too early.
2008-07-02Readd support for *international resource and default to false.Paulo Cesar Pereira de Andrade5-12/+40
This allows several features, like syntax highlight and indentation, turned off to be enabled again.
2008-07-02Add a generic hash table interface to replace the other implementations.Paulo Cesar Pereira de Andrade19-455/+778
2008-07-02Update build for sane defaults.Paulo Cesar Pereira de Andrade2-26/+69
Check for existing system functions. Don't add test program sources with main functions to libraries. Build test programs.
2008-07-02Add updated/meaningful README, COPYING and AUTHORS files.Paulo Cesar Pereira de Andrade3-8/+919