summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Removed the various "echo." lines from lisp\makefile.w32-in and ↵Ben Key2004-07-242-3/+3
| | | | | | | | | | | | | | | | | | | nt\makefile.w32-in. They caused mingw32-make.exe bootstrap to fail with the following error if cmd.exe was being used as the shell: "process_begin: CreateProcess((null), echo., ...) failed." I replaced the "@echo." lines in nt\makefile.w32-in with "@echo ." This writes a . to the screen but that is far more desirable than make bootstrap failing. I replaced the "echo. ..." line in lisp\makefile.w32-in with "echo ;;; ...". This writes an extra comment line to loaddefs.el. Again this is far more desirable than make bootstrap failing. NOTE: I am using cmd.exe as my shell when building Emacs with MinGW instead of the sh.exe that comes with msys because when I use sh.exe as my shell, loaddefs.el does not get properly generated and I get various auto load errors.
* (Defining Macros): Declaration keyword is `debug' not `edebug'.John Paul Wallington2004-07-232-1/+6
|
* *** empty log message ***Luc Teirlinck2004-07-231-0/+1
|
* (modify-all-frames-parameters): Minor doc fix.Luc Teirlinck2004-07-232-1/+7
| | | | (set-frame-configuration): Doc fix.
* (completion-setup-function): Compute the common partsEli Zaretskii2004-07-232-0/+13
| | | | | and the first difference place correctly when partial-completion-mode is on.
* Improve DSC compliance.Vinicius Jose Latorre2004-07-232-13/+47
|
* Fix comments.Kim F. Storm2004-07-221-5/+1
|
* *** empty log message ***Kim F. Storm2004-07-221-0/+4
|
* From Barry Fishman <barry_fishman@att.net> (tiny change)Kim F. Storm2004-07-211-1/+1
| | | | Use GC_MARK_STACK if __amd64__ is defined.
* *** empty log message ***Kim F. Storm2004-07-211-0/+4
|
* (display_line): Increment nrows_scale_factor and setKim F. Storm2004-07-211-3/+27
| | | | | | | fonts_changed_p if past last allocated row. (append_glyph, append_composite_glyph, produce_image_glyph) (append_stretch_glyph): Increment ncols_scale_factor and set fonts_changed_p if current area is full.
* (struct glyph_matrix): New members nrows_scale_factorKim F. Storm2004-07-211-0/+5
| | | | and ncols_scale_factor.
* (make_window): Initialize nrows_scale_factor andKim F. Storm2004-07-211-0/+1
| | | | ncols_scale_factor members.
* (margin_glyphs_to_reserve): Apply ncols_scale_factor.Kim F. Storm2004-07-211-5/+5
| | | | | | (allocate_matrices_for_frame_redisplay): Fix left/right margin mix-up. (required_matrix_height): Apply nrows_scale_factor. (required_matrix_width): Apply ncols_scale_factor.
* *** empty log message ***Kim F. Storm2004-07-211-0/+19
|
* * widget.c (EmacsFrameDestroy): Don't abort if normal_gc is 0.Jan Djärv2004-07-212-1/+4
|
* Doc fix.Vinicius Jose Latorre2004-07-212-26/+29
|
* (modify-all-frames-parameters): Minor doc fix.Luc Teirlinck2004-07-212-1/+5
|
* (fill-comment-paragraph): Handle indent-tabs-mode.Richard M. Stallman2004-07-202-1/+14
| | | | | | | (fill-delete-newlines): Call sentence-end as function. (fill-nobreak-p, canonically-space-region): Likewise. (fill-nobreak-p): If this break point is at the end of the line, don't consider the newline which follows as a reason to return t.
* *** empty log message ***Luc Teirlinck2004-07-192-2/+32
|
* (Fpos_visible_in_window_p, Fset_window_hscroll)Luc Teirlinck2004-07-191-18/+35
| | | | | | | | (Fwindow_inside_pixel_edges, Fwindow_end, Fset_window_point) (Fset_window_start, Fscroll_up, Fscroll_down) (Fother_window_for_scrolling, Fscroll_other_window) (Fsave_window_excursion, Fset_window_vscroll) (syms_of_window) <window-size-fixed>: Doc fixes.
* Various small changes in addition to:Luc Teirlinck2004-07-191-29/+54
| | | | | | | | | | | | | | (Window Point): Mention return value of `set-window-point'. (Window Start): `pos-visible-in-window-p' disregards horizontal scrolling. Explain return value if PARTIALLY is non-nil. (Vertical Scrolling): Mention PIXELS-P argument to `window-vscroll' and `set-window-vscroll'. (Size of Window): The argument WINDOW to `window-inside-edges', `window-pixel-edges' and `window-inside-pixel-edges' is optional. (Resizing Windows): Explain return value of `shrink-window-if-larger-than-buffer'. `window-size-fixed' automatically becomes buffer local when set. (Window Configurations): Explain return value of `set-window-configuration'.
* (Minibuffer Misc): Add anchor for `minibuffer-scroll-window'.Luc Teirlinck2004-07-191-0/+1
|
* (Text Lines): Add anchor for `count-lines'.Luc Teirlinck2004-07-191-0/+1
|
* (dired-file-set-difference): Don't use `caddr'.John Paul Wallington2004-07-192-2/+6
|
* 2004-07-19 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change)Jason Rumney2004-07-192-2/+7
| | | | | * w32fns.c (Fx_file_dialog): Use ENCODE_FILE instead of ENCODE_SYSTEM for filenames.
* mac.c (sys_select): Block input around call toSteven Tamm2004-07-193-70/+89
| | | | | | | | ReceiveNextEvent to prevent breakage. Correctly handle blocking on event queue only by calling ReceiveNextEvent instead of select (since GUI events aren't on an fd). (sys_read): Remove function sysdep.c: Remove redefine of read to sys_read if HAVE_CARBON
* Fixing typo in sys_select.Steven Tamm2004-07-191-1/+1
|
* Fixes for Ctrl-G support on carbon, replacing old timeout based pollingSteven Tamm2004-07-197-38/+59
| | | | | | | | | | | | | | with alarm based polling. mac.c (sys_select): Redo sys_select to use alarm-based polling instead of 1 sec timeouts (like solaris). macterm.c (x_make_frame_visible): Comment in polling on frame creation. keyboard.c: Undef SIGIO on Carbon atimer.c (alarm_signal_handler): Call alarm handlers after scheduling. eval.c (Feval): Remove quit_char test process.c (wait_reading_process_input): Remove clearing stdin for select call on process input
* *** empty log message ***Luc Teirlinck2004-07-191-2/+2
|
* (syms_of_xdisp): Correct capitalization error inLuc Teirlinck2004-07-192-1/+6
| | | | `window-scroll-functions' docstring.
* (Subdir switches): Minor fix to previous change.Luc Teirlinck2004-07-181-2/+2
|
* (Subdir switches): Dired does not remember the `R' switch.Luc Teirlinck2004-07-182-0/+9
|
* *** empty log message ***Luc Teirlinck2004-07-182-0/+8
|
* (Dired Updating): `k' only deletes inserted subdirectories from theLuc Teirlinck2004-07-181-4/+5
| | | | Dired buffer if a prefix argument was given.
* (Regexps): Delete redundant definition of `symbol' in description ofLuc Teirlinck2004-07-182-4/+8
| | | | `\_>'. It already occurs in the description of `\_<'.
* (dired-do-kill-lines): Expand docstring.Luc Teirlinck2004-07-181-20/+16
| | | | Delete irrelevant code.
* (tramp-handle-verify-visited-file-modtime): NewKai Großjohann2004-07-172-1/+11
| | | | docstring. From Luc Teirlinck.
* Describe `Auto Revert Tail Mode' in `Commentary' section.Luc Teirlinck2004-07-172-4/+19
| | | | | (auto-revert-handler): Do not check `auto-revert-tail-mode' for non-file buffers. We know it is nil.
* (not_single_kboard_state): Do nothing unless MULTI_KBOARD is defined.Juanma Barranquero2004-07-172-1/+8
|
* Sync with Tramp 2.0.43.Kai Großjohann2004-07-175-92/+172
| | | | | | | | | (tramp-handle-verify-visited-file-modtime): Remove outdated comment. (tramp-locked, tramp-locker): New variables for implementing a global lock. (tramp-sh-file-name-handler): Use them to implement the global lock.
* Added some additional functions to the `1-valued', `compose', and progn groups.Jonathan Yavner2004-07-172-73/+160
| | | | | Bugfix for marking up the definition for an empty function. New category "potentially-1valued" for functions that are not erroneous if either 1-valued or multi-valued.
* *** empty log message ***Richard M. Stallman2004-07-174-0/+40
|
* (coordinates_in_window): Inside the window but outsideRichard M. Stallman2004-07-171-3/+13
| | | | | its box to the L or R, return ON_VERTICAL_BORDER. (window_list_1): Rotate the list to start with WINDOW.
* (print_preprocess): Test for print_depth at limitRichard M. Stallman2004-07-171-5/+5
| | | | before entering in being_printed.
* (not_single_kboard_state): New function.Richard M. Stallman2004-07-171-6/+17
| | | | (stuff_buffered_input): Now no-op only if no SIGTSTP.
* (Fdelete_frame): If we're in single_bboard_state onRichard M. Stallman2004-07-171-0/+30
| | | | this kboard, and we delete its last frame, go to any_kboard_state.
* (syms_of_buffer) <transient-mark-mode>: Doc fix.Richard M. Stallman2004-07-171-1/+4
|
* (Overlay Properties): Adding `evaporate' prop deletes empty overlay immediately.Richard M. Stallman2004-07-171-3/+3
|
* (Abbrev Expansion): Clarify pre-abbrev-expand-hook, fix example.Richard M. Stallman2004-07-171-8/+5
|