aboutsummaryrefslogtreecommitdiffstats
path: root/src/s
Commit message (Collapse)AuthorAgeFilesLines
* (LIBS_CARBON) [!HAVE_CARBON]: Remove `-framework Carbon'.YAMAMOTO Mitsuharu2005-11-131-1/+1
|
* (C_SWITCH_SYSTEM): Remove -fno-common.YAMAMOTO Mitsuharu2005-11-091-1/+5
|
* * s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): DefineDan Nicolaescu2005-09-231-0/+18
| | | | | | | | | BROKEN_GET_CURRENT_DIR_NAME. * sysdep.c (get_current_dir_name): Also define if BROKEN_GET_CURRENT_DIR_NAME. * m/ibmrs6000.h: Test for USG5, not USG5_4.
* Update years in copyright notice; nfc.Thien-Thi Nguyen2005-08-0739-40/+69
|
* Merge gnulib getopt implementation into Emacs.Paul Eggert2005-07-261-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Makefile.in (AUTOCONF_INPUTS): New macro. ($(srcdir)/configure, $(srcdir)/src/stamp-h.in): Depend on it, so that these files also depend on m4/getopt.m4. * configure.in: Configure getopt by including m4/getopt.m4, and configuring a getopt replacement if necessary. * make-dist: Add m4 subdirectory. Unlink lib-src/getopt.h. * m4/getopt.m4: New file. * lib-src/Makefile.in (mostlyclean): Remove getopt.h, getopt.h-t. (GETOPT_H): New macro, from gnulib. (getopt.h): New rule, from gnulib. (GETOPTOBJS): Now autoconfigured. (GETOPTDEPS): getopt.h is now autoconfigured. (getopt.o, getopt1.o): Depend on $(GETOPT_H), not ${srcdir}/getopt.h. (getopt.o): Depend on ${srcdir}/gettext.h. (movemail.o): Depend on $(GETOPT_H). * lib-src/getopt.c, lib-src/getopt1.c: Sync from gnulib. * lib-src/getopt_.h, lib-src/getopt_int.h, lib-src/gettext.h: New files, from gnulib. * lib-src/getopt.h: Removed (now is getopt_.h). * nt/inc/gettext.h: Remove; no longer needed now that lib-src/gettext.h exists. * src/s/cygwin.h (C_SWITCH_SYSTEM): Remove, since gettext.h is now part of lib-src.
* Update FSF's address.Lute Kamstra2005-07-051-1/+2
|
* Update FSF's address.Lute Kamstra2005-07-0438-76/+76
|
* (chown): New; define to sys_chown.Eli Zaretskii2005-06-241-0/+1
|
* (fileno): Don't define if already defined.Eli Zaretskii2005-06-041-0/+2
|
* (HAVE_PWD_H): Define.Thien-Thi Nguyen2005-04-221-0/+1
|
* (LD_SWITCH_SYSTEM_tmp): Define if undefined.Thien-Thi Nguyen2005-03-211-0/+7
|
* (DARWIN): Don't define.YAMAMOTO Mitsuharu2005-03-161-0/+3
|
* Undefine NO_HYPHENS_IN_FILENAMES.Thien-Thi Nguyen2005-03-042-0/+4
|
* Define NO_HYPHENS_IN_FILENAMES.Thien-Thi Nguyen2005-03-041-0/+5
|
* (FILE_SYSTEM_CASE): New macro.Thien-Thi Nguyen2005-03-041-0/+4
|
* 2004-11-08 Benjamin Riefenstahl <[email protected]>Jason Rumney2005-02-151-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * w32select.c: Summary: Thorough rework to implement Unicode clipboard operations and delayed rendering. Drop last_clipboard_text and related code, keep track of ownership via clipboard_owner instead. Drop old #if0 sections. (DEFAULT_LCID, ANSICP, OEMCP, QUNICODE, QANSICP, QOEMCP) (clipboard_owner, modifying_clipboard, cfg_coding_system) (cfg_codepage, cfg_lcid, cfg_clipboard_type, current_text) (current_coding_system, current_requires_encoding) (current_num_nls, current_clipboard_type, current_lcid): New static variables. (convert_to_handle_as_ascii, convert_to_handle_as_coded) (render, render_all, run_protected, lisp_error_handler) (owner_callback, create_owner, setup_config) (enum_locale_callback, cp_from_locale, coding_from_cp): New local functions. (term_w32select, globals_of_w32select): New global functions. (Fw32_set_clipboard_data): Ignore parameter FRAME, use clipboard_owner instead. Use delayed rendering and provide all text formats. Provide CF_LOCALE if necessary. (Fw32_get_clipboard_data): Handle CF_UNICODETEXT and CF_LOCALE. Fall back to CF_TEXT, if CF_UNICODETEXT is not available. Force DOS line-ends for decoding. (Fx_selection_exists_p): Handle CF_UNICODETEXT. (syms_of_w32select): Init and register new variables. * w32.h: Add prototypes for globals_of_w32select and term_w32select. Make the neighboring K&R declarations into prototypes, too. * emacs.c: Include w32.h to get function prototypes. (main): Call globals_of_w32select. * w32.c (term_ntproc): Call term_w32select. * mule-cmds.el (set-locale-environment): Remove call to set-selection-coding-system on Windows. * s/ms-w32.h: Guard MSC-specific #pragmas with an #ifdef.
* * s/darwin.h: Removed PTY_ITERATION from here.Steven Tamm2005-01-221-13/+9
| | | | | | | | (DARWIN): Defined. * process.c (init_process): Default process-connection-type to nil on darwin 6 or less, t if it is 7 or higher. This way the broken pty behavior is still allowed on darwin 6 for interactive processes for people that know what they are doing.
* * editfns.c (Voperating_system_release): Added.Steven Tamm2005-01-201-0/+16
| | | | | | | | | | | | | | (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.
* * keyboard.c: Don't undef SIGIOSteven Tamm2004-11-301-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | * s/darwin.h (NO_SOCK_SIGIO): Define NO_SOCK_SIGIO on carbon * Makefile.in (mac.o): Depend on blockinput.h and atimer.h. (macfns.o): Don't depend on ccl.h. * macfns.c (mac_frame_parm_handlers): Set handlers for Qleft_fringe and Qright_fringe. * macterm.c (mac_fill_rectangle_to_pixmap) (mac_draw_rectangle_to_pixmap, mac_copy_area_to_pixmap) (mac_copy_area_with_mask_to_pixmap, x_draw_image_foreground_1): Put in #if 0. (mac_scroll_area) [TARGET_API_MAC_CARBON]: Use ScrollWindowRect. (x_flush) [TARGET_API_MAC_CARBON]: Don't traverse frames. (XFlush) [TARGET_API_MAC_CARBON]: Define to an empty replacement. (x_draw_glyph_string_background, x_draw_glyph_string_foreground) [!MAC_OS8]: Added ifdef'd out code for os8. Don't use XDrawImageString. Always draw background and foreground separately. (x_draw_image_foreground): Use clipping instead of computing the intersection rectangle. (x_draw_image_glyph_string): Don't draw an image with mask to a pixmap. (x_redisplay_interface): Set flush_display_optional member to 0. (XTread_socket): Correctly reset the TEConverter object.
* Enable no-op gcpros on ia64.Andreas Schwab2004-11-271-2/+12
| | | | (GC_MARK_SECONDARY_STACK) [__ia64__]: Define.
* (POSIX_SIGNALS): Undo the removal of 2002-08-25,Stefan Monnier2004-11-261-0/+4
| | | | which was not mentioned in the log.
* (LIBS_CARBON): New define to specify libraries forSteven Tamm2004-09-021-5/+12
| | | | | | Carbon support. (LD_SWITCH_SYSTEM_TEMACS): Don't link with unused libstdc++. Use LIBS_CARBON.
* From Barry Fishman <[email protected]> (tiny change)Kim F. Storm2004-07-211-1/+1
| | | | Use GC_MARK_STACK if __amd64__ is defined.
* Changes for Cygwin unexec() support, changes in Cygwin itself.Stefan Monnier2004-04-121-5/+3
| | | | Add support for Xaw3d scrollbars.
* Delete previous change.Richard M. Stallman2004-03-201-5/+0
|
* (LD_SWITCH_SYSTEM_TEMACS): New definition.Richard M. Stallman2004-03-041-0/+5
|
* Inserting Yamomotosan's changes for MacOSX image support, better supportSteven Tamm2004-02-261-1/+1
| | | | of Asian fonts, and some long awaited header cleanup and centralization.
* (__attribute__): Remove outdated workaround.Stefan Monnier2004-01-211-4/+1
|
* (LD_SWITCH_SYSTEM_TEMACS)Gerd Moellmann2003-11-241-0/+8
| | | | | [__FreeBSD_version >= 500042]: Define as -znocombreloc because ld's default is incompatible with unexec.
* s/darwin.h (GC_MARK_STACK): Define.Andrew Choi2003-10-121-0/+4
|
* Add arch taglinesMiles Bader2003-09-01105-0/+303
|
* [__FreeBSD_version >= 400000]: Define TERMINFO, use -lncurses.Richard M. Stallman2003-08-191-0/+3
|
* (LD_SWITCH_SYSTEM_TEMACS): Add undef.Richard M. Stallman2003-07-211-0/+1
|
* Use -Wl syntax.Richard M. Stallman2003-07-211-1/+1
|
* (START_FILES_1, END_FILES_1): Always define them.Richard M. Stallman2003-07-131-0/+3
|
* (START_FILES, LIB_STANDARD): Use START_FILES_1, END_FILES_1.Richard M. Stallman2003-07-121-2/+14
| | | | | (START_FILES_1, END_FILES_1): New macros (conditional). (LD_SWITCH_SYSTEM_TEMACS): Defined.
* Don't include bsd4-3.h.Richard M. Stallman2003-07-121-4/+17
| | | | | | (TERMINFO): Defined. (LIBS_TERMCAP): Defined. (LD_SWITCH_SYSTEM): Defined (two definitions).
* (MAIL_USE_FLOCK): Make it conditional.Dave Love2003-05-201-1/+11
|
* Include hpux10-20.h instead of hpux10.h. Delete #undef ofJuanma Barranquero2003-02-211-4/+1
| | | | POLLING_PROBLEM_IN_SELECT.
* (POLLING_PROBLEM_IN_SELECT): Define POLL_INTERRUPTED_SYS_CALL, notJuanma Barranquero2003-02-211-2/+4
| | | | POLLING_PROBLEM_IN_SELECT.
* New file.Juanma Barranquero2003-02-211-0/+11
|
* Trailing whitespace deleted.Juanma Barranquero2003-02-0419-33/+33
|
* Initial revision.Juanma Barranquero2003-01-311-0/+146
|
* (GC_SETJMP_WORKS, GC_MARK_STACK): Define for moreDave Love2003-01-241-4/+11
| | | | architectures.
* (GC_SETJMP_WORKS, GC_MARK_STACK): Define.Dave Love2003-01-212-0/+7
|
* Not necessary.Dave Love2002-12-091-16/+0
|
* 2002-12-02 Andrew Choi <[email protected]>Andrew Choi2002-12-021-3/+0
| | | | | | | | | | | * macmenu.c (add_menu_item, fill_menubar): Truncate menu item names to 255 characters. * macterm.c (XTread_socket): If all frames have been collapsed, expand the first one before handling drag-and-drop events. * s/darwin.h (GETPGRP_NO_ARG): Delete. Replaced by GETPGRP_VOID, which is detected by autoconf.
* *** empty log message ***Dave Love2002-11-286-162/+0
|
* *** empty log message ***Dave Love2002-11-271-0/+4
|
* (WAIT_USE_INT, SYS_SIGLIST_DECLARED, sys_siglist):Dave Love2002-11-271-3/+3
| | | | | Don't define. (GC_SETJMP_WORKS, GC_MARK_STACK): Define.