aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/pcvs-util.el
Commit message (Collapse)AuthorAgeFilesLines
* Add 2010 to copyright years.Glenn Morris2010-01-131-1/+1
|
* * menu-bar.el (list-buffers-directory): Add docstring.Juanma Barranquero2009-09-251-1/+1
| | | | | | | | | | | | Make automatically buffer-local. * dired.el (dired-mode): * files.el (cd-absolute): * pcvs.el (cvs-temp-buffer): * pcvs-util.el (cvs-get-buffer-create): * shell.el (shell-mode): * vc-dir.el (vc-dir-mode): Don't make `list-buffers-directory' buffer local.
* Add 2009 to copyright years.Glenn Morris2009-01-051-1/+1
|
* (cvs-bury-buffer): Revert my patch: quit-windowSam Steingold2008-05-081-1/+14
| | | | appears to be too aggressive with window removal.
* Switch to recommended form of GPLv3 permissions notice.Glenn Morris2008-05-061-6/+4
|
* (cvs-bury-buffer): Use quit-window instead of theSam Steingold2008-04-171-14/+1
| | | | idiosyncratic bury-buffer/delete-window logic.
* (cvs-map): Avoid recursion :-(Stefan Monnier2008-04-071-3/+5
|
* Add 2008 to copyright years.Glenn Morris2008-01-071-1/+1
|
* (cvs-qtypedesc-strings): Use new namesRichard M. Stallman2007-08-121-1/+2
| | | | combine-and-quote-strings and split-string-and-unquote.
* Switch license to GPLv3 or later.Glenn Morris2007-07-251-1/+1
|
* * pcvs-util.el (cvs-strings->string, cvs-string->strings):Nick Roberts2007-07-081-30/+1
| | | | | | Rename and move to... * subr.el (strings->string, string->strings): ...here.
* Add 2007 to copyright years.Glenn Morris2007-01-211-1/+1
|
* (cvs-get-buffer-create): Obey `noreuse' even if `name'Stefan Monnier2006-08-021-1/+3
| | | | doesn't look like a file name.
* Update my email address.Stefan Monnier2006-04-301-1/+1
|
* (cvs-insert-strings): Fix bug with strings longer than wwidth.Stefan Monnier2006-03-311-5/+7
|
* Update years in copyright notice; nfc.Thien-Thi Nguyen2006-02-061-1/+1
|
* Update years in copyright notice; nfc.Thien-Thi Nguyen2005-08-061-1/+1
|
* (cvs-flags-query, cvs-strings->string, cvs-prefix-get): Fix typos in docstrings.Juanma Barranquero2005-07-201-3/+3
|
* Update FSF's address.Lute Kamstra2005-07-041-2/+2
|
* (cvs-string->strings): Strip trailing whitespace.Stefan Monnier2005-03-141-3/+3
|
* (cvs-bury-buffer): Don't call get-buffer-window for effect.Richard M. Stallman2004-10-161-5/+6
|
* (cvs-string-prefix-p): Use compare-strings.Stefan Monnier2004-09-071-6/+4
|
* (cvs-butlast, cvs-nbutlast): Remove (`butlast' and `nbutlast' are inJuanma Barranquero2004-05-281-18/+1
| | | | subr.el).
* Add arch taglinesMiles Bader2003-09-011-0/+1
|
* Remove annoying $Id$ tag.Stefan Monnier2003-05-091-1/+0
|
* Trailing whitespace deleted.Juanma Barranquero2003-02-041-9/+9
|
* Doc fixes.Pavel Janík2001-12-201-2/+2
|
* (cvs-file-to-string): Move condition-case outside.Stefan Monnier2001-12-021-14/+13
|
* (cvs-prefix-define): Don't defconst a variable.Stefan Monnier2001-11-171-2/+2
|
* (cvs-prefix-define): Typo cons->concat.Stefan Monnier2001-10-031-2/+2
|
* Some fixes to follow coding conventions.Pavel Janík2001-07-161-4/+4
|
* Add comments.Stefan Monnier2001-04-131-1/+3
|
* See ChangeLogJohn Wiegley2001-03-201-2/+2
|
* (cvs-bury-buffer): In doubt, don't delete window.Stefan Monnier2001-03-071-2/+5
|
* Update copyright.Gerd Moellmann2001-01-091-2/+3
|
* Remove useless Version.Stefan Monnier2000-12-181-4/+3
|
* Minor doc/comment changes.Stefan Monnier2000-12-101-5/+5
|
* Fix copyright years.Dave Love2000-12-061-3/+3
|
* (cvs-butlast, cvs-nbutlast): New (copied from CL).Stefan Monnier2000-11-061-2/+39
| | | | (cvs-insert-strings): New function.
* Use `nth' instead of `first', `second', and `third'.Gerd Moellmann2000-08-061-3/+3
|
* * pcvs.el: Add a minimal leading commentary.Stefan Monnier2000-03-221-10/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (cvs-make-cvs-buffer): Change the header part by removing the startup message and adding a `Module' entry. Also replace the FOOTER and HEADER special fileinfos with the new support in ewoc for updating its own footer and header. (cvs-update-header): Update to use the header/footer of the ewoc. (cvs-mode): Use define-derived-mode and set truncate-lines to t. (cvs-is-within-p): New function. (cvs-mode-run): Take advantage of `save-some-buffers's new ability to only examine some subset of the buffers. * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving `format' instead of our own ad-hoc functions. Remove HEADER and FOOTER cases, now handled in the EWOC. (cvs-fileinfo<): Remove HEADER and FOOTER cases. * pcvs-parse.el (cvs-parse-run-table): Change message for unknown output to avoid scaring the user. (cvs-parse-table): Catch message for non-up-to-date commits. * pcvs-defs.el (cvs-startup-message): Remove. (cvs-global-menu): New autoloaded menu. * pcvs-util.el (cvs-string-fill): Remove. * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove. (ewoc--refresh-node): Don't take the whole EWOC but only the relevant PP part of it and also make it work for footers and headers. (ewoc-create): Drop POS and BUFFER arguments. Use the DLL's dummy node to store the end-of-footer position. (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node. (ewoc-refresh): Remove unused `header' variable. (ewoc-(get|set)-hf): New functions.
* (cvs-strings->string): RenameDave Love2000-03-171-2/+2
| | | | replace-regexps-in-string.
* *** empty log message ***Stefan Monnier2000-03-111-0/+381