summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Don't use "prints" except for printers.Richard M. Stallman2001-08-251-1/+1
|
* Don't use "prints" except for printers.Richard M. Stallman2001-08-251-2/+2
| | | | Standardize on ASCII without @sc.
* Fix typo.Richard M. Stallman2001-08-251-1/+1
|
* Remove two excess spaces.Richard M. Stallman2001-08-251-2/+2
|
* (Cursor Display): Don't say that hl-line-modeGerd Moellmann2001-08-241-1/+1
| | | | is a global minor mode.
* *** empty log message ***Gerd Moellmann2001-08-242-1/+8
|
* (hl-line-mode): Don't be a global mode.Gerd Moellmann2001-08-241-3/+7
| | | | (global-hl-line-mode): New definition.
* *** empty log message ***Gerd Moellmann2001-08-242-0/+9
|
* (gs-load-image): Wait for GHOSTVIEW window propertyGerd Moellmann2001-08-241-8/+14
| | | | | being reset by Ghostscript. Don't kill the gs process. From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
* (access_keymap): Return the cdr of the binding ofGerd Moellmann2001-08-241-1/+1
| | | | a generic character instead of its definition (KEY . BINDING).
* (Finsert_file_contents): Set coding's dest_multibyteGerd Moellmann2001-08-242-6/+13
| | | | to 0 also in the REPLACE case.
* 2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>Andrew Choi2001-08-242-1/+39
| | | | | | | | | * src/macterm.c (init_font_name_table): Add an additional entry to the font table with the script code smRoman for each Apple Japanese font. (XLoadQueryFont): Recognize a font as having the smRoman script code even when FontToScript returns smJapanese if it is one of those created above.
* 2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>Andrew Choi2001-08-242-0/+6
| | | | * term/mac-win.el: Require scroll-bar.
* 2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>Andrew Choi2001-08-242-5/+11
| | | | | * fileio.c (Ffile_readable_p) [macintosh]: Call access instead of open to determine whether file is readable (as for DOS_NT).
* (electric-buffer-list): Use list-buffers-noselect.Stefan Monnier2001-08-231-2/+2
|
* (Search and Replace): Add description ofGerd Moellmann2001-08-231-4/+8
| | | | START and END parameters to perform-replace.
* *** empty log message ***Gerd Moellmann2001-08-232-4/+15
|
* Label all user-level changes with either +++ or ---.Eli Zaretskii2001-08-231-9/+147
|
* (Finsert_file_contents): If VISIT is non-nil, andGerd Moellmann2001-08-231-2/+8
| | | | | | | coding.type is coding_type_no_conversion or coding_type_raw_text, use Fset_buffer_multibyte to make the buffer unibyte if REPLACE is non-nil instead of just setting enable_multibyte_characters in the buffer to nil.
* (Font Lock): Document font-lock-remove-keywords.Eli Zaretskii2001-08-231-0/+4
|
* (File Aliases): Document find-file-suppress-same-file-warnings.Eli Zaretskii2001-08-231-4/+7
|
* (Trailing Whitespace): Document delete-trailing-whitespace.Eli Zaretskii2001-08-231-0/+6
|
* Document confirm-kill-emacs.Eli Zaretskii2001-08-231-0/+9
|
* Document the problems with MS-Windows antivirus problems.Eli Zaretskii2001-08-231-0/+11
|
* (hexl-insert-multibyte-char) New function.Eli Zaretskii2001-08-232-24/+91
| | | | | | | | | | | | (hexl-quoted-insert, hexl-self-insert-command) (hexl-insert-hex-char, hexl-insert-decimal-char) (hexl-insert-octal-char): Call it instead of hexl-insert-char. Fix the doc strings accordingly. (hexl-insert-char): Reject characters whose code is above 255. Doc fix. (hexl-mode-map): Copy the global keymap instead of creating a sparse keymap, and bind all self-inserting characters to hexl-self-insert-command.
* Fix the names of the contributors.Eli Zaretskii2001-08-231-1/+1
|
* Update per the English version.Eli Zaretskii2001-08-232-2/+31
|
* *** empty log message ***Gerd Moellmann2001-08-231-0/+8
|
* *** empty log message ***Gerd Moellmann2001-08-231-1/+1
|
* (mail-mode): Use adaptive-fill-regexp.Stefan Monnier2001-08-222-3/+8
|
* (adaptive-fill-regexp): Admit tabs as well.Stefan Monnier2001-08-221-1/+1
|
* (line-number-mode): Mention the variable line-number-display-limit-widthEli Zaretskii2001-08-222-2/+8
| | | | in the doc string.
* (text): Re-order docstring correctly.Stefan Monnier2001-08-221-2/+2
|
* *** empty log message ***Gerd Moellmann2001-08-222-0/+23
|
* (menu_face_changed_default): New variable.Gerd Moellmann2001-08-221-9/+25
| | | | | | | | | | | | (menu_face_changed_count): Variable removed. (Finternal_set_lisp_face_attribute): Doc fix. If FRAME is t, set the menu_face_changed_default flag, otherwise set the FRAME's menu_face_changed_p flag if the `menu' face has been changed. Prevent calling set_font_frame_param if FRAME is t. (make_face_cache): Initialize cache's menu_face_changed_p from menu_face_changed_default. (realize_basic_faces): Look into the frame's face cache to determine if the menu appearance needs updating.
* (struct face_cache): Add memberGerd Moellmann2001-08-221-0/+4
| | | | menu_face_changed_p.
* (mode-line-unbury-buffer): Add EVENT parameter.Gerd Moellmann2001-08-221-8/+23
| | | | | | | | Temporarily select EVENT's window for switching buffers. (mode-line-bury-buffer): New function. (mode-line-buffer-identification-keymap): Use it instead of bury-buffer. Bind down-mouse events to prevent global down-mouse events to shine through.
* *** empty log message ***Gerd Moellmann2001-08-222-1/+6
|
* (access_keymap): Fix last change to not considerGerd Moellmann2001-08-221-3/+3
| | | | IDX when it has modifiers.
* Reshuffle user-level changes to bring more important ones closer to theEli Zaretskii2001-08-221-726/+740
| | | | beginning.
* (comment-beginning): Make sure the comment-startStefan Monnier2001-08-212-70/+80
| | | | we found isn't a comment-end (in cases where confusion is possible).
* Docstring fixes.Stefan Monnier2001-08-211-3/+3
|
* *** empty log message ***Miles Bader2001-08-211-0/+5
|
* (byte-compile-file): Remove TARGET-FILE before writing it, so thatMiles Bader2001-08-211-2/+9
| | | | hard-links don't see new version.
* Document the removal of c-hanging-comment-starter-p andEli Zaretskii2001-08-211-0/+6
| | | | c-hanging-comment-ender-p. Suggested by Perry Smith <pedz@austin.ibm.com>.
* 2001-08-21 Andrew Choi <akochoi@cse.cuhk.edu.hk>Andrew Choi2001-08-213-41/+50
| | | | | | | | | | | | | * src/macterm.c (local_to_global_coord): Comment out. * src/mac.c (mac-filename-to-unix): Change to mac-file-name-to-posix. (unix-filename-to-mac): Change to posix-file-name-to-mac. (mac_to_unix_pathname): Change to mac_to_posix_pathname. (unix_to_mac_pathname): Change to posix_to_mac_pathname. * src/macterm.c (do_ae_open_documents): Change call to mac_to_unix_pathname to mac_to_posix_pathname.
* 2001-08-21 Andrew Choi <akochoi@i-cable.com>Andrew Choi2001-08-212-6/+12
| | | | | * macos.texi: Change mac-filename-to-unix and unix-filename-to-mac to mac-file-name-to-posix and posix-file-name-to-mac, resp.
* (gs-set-ghostview-colors-window-prop): CallGerd Moellmann2001-08-212-2/+17
| | | | | | x-change-window-property with 3rd arg FRAME. (gs-load-image): Wait for a previoius Ghostscript process to complete before starting a new one.
* (access_keymap): If a binding of the form (GENERIC-CHARGerd Moellmann2001-08-212-2/+32
| | | | | | . BINDING) exists, where GENERIC-CHAR is the generic character of the charset of IDX, return BINDING, unless there exists or binding for IDX itself.
* 2001-08-21 Andrew Choi <akochoi@cse.cuhk.edu.hk>Andrew Choi2001-08-212-2/+6
| | | | | * INSTALL: Add to the note on using -opt speed in MPW the function macterm.c (x_draw_hollow_cursor).