aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Revision: emacs@sv.gnu.org/emacs--devo--0--patch-51Miles Bader2006-02-071-6/+6
| | | | | | | | | | Make constrain-to-field notice overlays 2006-02-08 Miles Bader <miles@gnu.org> * src/editfns.c (Fconstrain_to_field): Use Fget_char_property instead of Fget_text_property (other field functions word with overlays as well as text-properties).
* Update years in copyright notice; nfc.Thien-Thi Nguyen2006-02-061-1/+1
|
* (Fconstrain_to_field): Fix int/Lisp_Object mixup.Ken Raeburn2006-02-051-1/+2
|
* (Fconstrain_to_field): Fix behaviour on field boundaries.Károly Lőrentey2006-01-261-11/+31
| | | | (find_field): Set before_field to after_field when pos is at BEGV.
* (Fconstrain_to_field): Use get_pos_property, not Fget_char_property,Károly Lőrentey2006-01-261-11/+13
| | | | | | to fix handling of field boundaries. Fix bogus comment. (Fline_beginning_position, Fline_end_position): Clarify confusing doc string.
* (Fformat): Don't include string paddingRichard M. Stallman2005-10-281-2/+4
| | | | between info[n].start and info[n].end.
* (Fcompare_buffer_substrings): Fix last change.Kim F. Storm2005-10-241-1/+1
|
* (Fcompare_buffer_substrings): Handle multibyte chars.Stefan Monnier2005-10-241-5/+5
|
* Move systime.h include after lisp.h.Dan Nicolaescu2005-09-301-2/+2
| | | | (make_time): Move prototype from systime.h.
* (Fmessage, Fmessage_box, Fmessage_or_box):Juri Linkov2005-09-291-5/+5
| | | | | Rename argument name `string' to `format-string'. (Fformat): Doc fix.
* (Fformat): Explicitly test for end of format string and don't use `index'.Richard M. Stallman2005-09-231-1/+3
|
* (Fformat): Don't scan past end of format string thatKim F. Storm2005-09-191-1/+1
| | | | ends in %. Reported by: Johan Bockgård.
* (Ftranslate_region_internal): Reload `tt' afterKim F. Storm2005-09-121-6/+9
| | | | | signal_after_change that may have GC'ed. (Fmessage, Fmessage_box, Fmessage_or_box): Doc fix.
* (Fpropertize): Don't insist that properties be symbols.Richard M. Stallman2005-09-041-4/+1
|
* Update years in copyright notice; nfc.Thien-Thi Nguyen2005-08-071-2/+3
|
* Update FSF's address.Lute Kamstra2005-07-041-2/+2
|
* (Fsubst_char_in_region): Follow error conventions.Juanma Barranquero2005-06-231-1/+1
|
* (Fmessage_box): Use "Information" for frame title.Nick Roberts2005-05-241-1/+1
|
* Remove reference to defunct vms-pwd.h.Thien-Thi Nguyen2005-04-201-3/+1
| | | | For pwd.h, use HAVE_PWD_H, not !VMS.
* (Fgoto_char): Fix docstring. Probably left-over from Emacs-20.1.Stefan Monnier2005-03-271-6/+3
|
* (Fmessage): If arg is "", return "" (as before).Richard M. Stallman2005-01-211-1/+1
|
* * editfns.c (Voperating_system_release): Added.Steven Tamm2005-01-201-0/+9
| | | | | | | | | | | | | | (init_editfns): Assign new variable operating-system-release based on call to uname if available. (get_operating_system_release): Added function to allow c-level access to operating system release. * config.h: Regenerated. * s/darwin.h (PTY_ITERATION): Don't allow PTYs on darwin 6 or less. (MIN_PTY_KERNEL_VERSION): Defined minimum kernel version for using ptys as '7'. * term/mac-win.el (process-connection-type): Removed. Controlled now by s/darwin.h:PTY_ITERATION.
* * editfns.c (Voperating_system_release): Added.Steven Tamm2005-01-191-0/+18
| | | | | | (init_editfns): Assign new variable operating-system-release based on call to uname if available. * config.h: Regenerated.
* Move #include "systime.h" before <sys/resource.h>.Eli Zaretskii2004-11-081-11/+5
| | | | | Don't include <sys/time.h> explicitly. Include <stdio.h> unconditionally, not just on MacOS.
* editfns.c: Adding in better patchSteven Tamm2004-11-071-2/+3
|
* editfns.c: Need to include sys/time.h before resource.h on darwin.Steven Tamm2004-11-071-0/+3
|
* (Fget_internal_run_time): New function.Eli Zaretskii2004-11-061-0/+46
| | | | (syms_of_data): Defsubr it.
* (Fmessage): Doc fix.Richard M. Stallman2004-10-271-2/+5
|
* (Fformat): Allocate discarded table with SAFE_ALLOCA.Kim F. Storm2004-10-261-10/+12
| | | | | Only allocate info and discarded tables once. Fix SAFE_FREE calls.
* (Ftranslate_region_internal): New function.Kenichi Handa2004-10-221-20/+57
| | | | (syms_of_editfns): Defsubr it.
* (Fdelete_and_extract_region): If region is empty, return null string.Richard M. Stallman2004-10-191-0/+2
|
* (Fformat): Handle format strings with multiple textKim F. Storm2004-09-121-4/+6
| | | | | properties. Reverse text property list from the format string, so the positions are in increasing order.
* (Fformat): Allocated extra (dummy) element in info.Kim F. Storm2004-07-301-2/+3
|
* (Ffloat_time, Fformat_time_string, Fdecode_time)Luc Teirlinck2004-07-091-30/+29
| | | | | (Fcurrent_time_string, Fcurrent_time_zone): Mention in docstrings that time values of the type (HIGH . LOW) are considered obsolete.
* (Fformat, Ftranspose_regions): Use SAFE_ALLOCA.Kim F. Storm2004-06-211-41/+29
|
* (Fuser_login_name, Ffloat_time, Fencode_time, Fcurrent_time_string)Juanma Barranquero2004-06-071-10/+11
| | | | | (Fcurrent_time_zone, Finsert_buffer_substring, Ftranspose_regions): Doc fixes.
* (Finsert_buffer_substring): Make argument names match their use inJuanma Barranquero2004-05-071-8/+8
| | | | docstring.
* (lisp_time_argument): Provide externally.Eli Zaretskii2004-04-271-2/+2
|
* (Fformat): Fix allocation size of precision array.Kim F. Storm2004-04-131-2/+2
|
* (Fformat): Fix initialization of the array info.Kenichi Handa2004-03-301-1/+1
|
* * insdel.c (adjust_markers_for_insert): Call fix_start_end_in_overlays.Masatake YAMATO2004-03-251-1/+1
| | | | | | * buffer.c (fix_start_end_in_overlays): Rename fix_overlays_in_range. * editfns.c (Ftranspose_regions): Likewise. * lisp.h (top_level): Likewise.
* (Ftranslate_region): Lisp_Object/int mixup.Stefan Monnier2004-03-021-2/+2
|
* (Ftranslate_region): Fix previous changeKenichi Handa2004-03-011-25/+11
|
* (Ftranslate_region): Handle multibyte chars in the argKenichi Handa2004-03-011-12/+25
| | | | TABLE correctly.
* (Fchar_after, Fchar_before): Doc fixes.Luc Teirlinck2004-02-051-2/+2
|
* For `format', make source and documentation match.Jonathan Yavner2004-01-241-20/+19
|
* (Fformat): Fix '&' to '&&'.Kenichi Handa2004-01-081-1/+1
|
* (region_limit): Support any non-zero value of BEGINNINGP.Eli Zaretskii2003-09-071-1/+1
|
* Add arch taglinesMiles Bader2003-09-011-0/+3
|
* (Fencode_time): Doc fix.Richard M. Stallman2003-08-171-0/+3
|