- 05 Mar, 2013 9 commits
-
-
Dmitry Gutov authored
* lisp/minibuffer.el (completions-first-difference): State that the face is "added" in the docstring. (completions-common-part): Same. And don't inherit from default. (completion-hilit-commonality): Prepend 'completions-common-part and 'completion-first-difference faces to the 'face property, instead of replacing the value(s). (completion--insert-strings): Same with 'completions-annotations face. (completion-hilit-commonality): Use 'face instead of 'font-lock-face, because it gets priority if the completion strings already have 'face set. Fixes: debbugs:13250
-
Paul Eggert authored
-
Glenn Morris authored
-
Glenn Morris authored
-
Glenn Morris authored
-
Glenn Morris authored
-
Paul Eggert authored
-
Paul Eggert authored
* sysdep.c (KERN_PROC, kinfo_proc) [BSD_SYSTEM && !KERN_PROC]: Define to KERN_PROC2 and kinfo_proc2, for OpenBSD 4.9. list-system-processes still returns nil, but at least it doesn't crash. Problem reported by Nelson H. F. Beebe in <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00021.html>.
-
Dmitry Antipov authored
Use make_uninit_vector where appropriate. * font.c (Ffont_get_glyphs, build_style_table): Likewise. * xselect.c (clean_local_selection_data): Likewise.
-
- 04 Mar, 2013 10 commits
-
-
Alan Mackenzie authored
progmodes/cc-defs.el (c-last-command-char): New macro. progmodes/cc-align.el (c-semi&comma-inside-parenlist) (c-semi&comma-no-newlines-before-nonblanks) (c-semi&comma-no-newlines-for-oneline-inliners): Use the new macro in place of `last-command-event'. progmodes/cc-cmds.el (c-electric-pound, c-electric-brace) (c-electric-slash, c-electric-semi&comma, c-electric-lt-gt) (c-electric-paren, c-electric-continued-statement): Use the new macro in place of `last-command-event'.
-
Paul Eggert authored
* image.c (imagemagick_load_image): Calculate height and width after flattening the image, not before. Fixes: debbugs:13846
-
Juanma Barranquero authored
(DATA_START, ORDINARY_LINK): Remove. (HAVE_DATA_START, HAVE__PUTENV): New macros.
-
Ted Phelps authored
lisp/gnus/shr.el: Make all the overlays set the `evaporate' property so that they're removed properly
-
Paul Eggert authored
With GNU Texinfo 5.0, this generates nicer-looking info files, since they can use curly quotes. With older Texinfo it doesn't matter.
-
Dmitry Antipov authored
* ftfont.c (ftfont_shape_by_flt): Likewise. * w32uniscribe.c (uniscribe_shape): Likewise.
-
Paul Eggert authored
-
Glenn Morris authored
Fixes: debbugs:13862
-
Paul Eggert authored
* admin/grammars/java-tags.wy (CHAR): Remove "('\u0000' to '\uffff')" from summary, as this causes javat-wy.el to contain both a null byte and a byte sequence that is not valid UTF-8, which is inconvenient. * lisp/cedet/semantic/wisent/javat-wy.el: Regenerate.
-
Paul Eggert authored
-
- 03 Mar, 2013 14 commits
-
-
Glenn Morris authored
-
Michael Albinus authored
devices by itself.
-
Michael Albinus authored
whether the "su" command is available on the device.
-
Paul Eggert authored
If there were a real need, it should be UTF-8 anyway.
-
Paul Eggert authored
-
Glenn Morris authored
-
Glenn Morris authored
-
Glenn Morris authored
-
Glenn Morris authored
-
Glenn Morris authored
-
Glenn Morris authored
-
Bill Wohler authored
-
Bill Wohler authored
* mh-e.el (Version, mh-version): Update for release 8.5.
-
Bill Wohler authored
* NEWS, MH-E-NEWS: Update for MH-E release 8.5.
-
- 02 Mar, 2013 7 commits
-
-
Bill Wohler authored
release 8.5. * mh-e.texi (Preface, Conventions, Getting Started) (Using This Manual, Folder Selection, Viewing, Aliases) (Identities, Speedbar, Menu Bar, Tool Bar, Scan Line Formats) (Bug Reports, Mailing Lists, MH FAQ and Support, Getting MH-E): Update URLs.
-
Bill Wohler authored
-
Paul Eggert authored
-
Paul Eggert authored
The old approach, which fell back on DIR/.#FILE.0 through DIR/.#FILE.9, had race conditions that could not be easily fixed. If DIR/.#FILE is a non-symlink file, Emacs now does not create a lock file for DIR/FILE; that is, DIR/FILE is no longer partly protected by a lock if DIR/.#FILE is a non-symlink file ("partly" because the locking mechanism was never reliable in that case). This patch fixes this and other bugs discovered by a code inspection that was prompted by <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00531.html>. Also, this patch switches to .#-FILE (not .#FILE) on MS-Windows, to avoid interoperability problems between the MS-Windows and non-MS-Windows implementations. MS-Windows and non-MS-Windows instances of Emacs now ignore each others' locks. * etc/NEWS: Document this. * src/filelock.c (defined_WINDOWSNT): New constant. (MAKE_LOCK_NAME, fill_in_lock_file_name): Don't create DIR/.#FILE.0 through DIR/.#FILE.9. Instead, create DIR/.#FILE symlinks on non-MS-Windows hosts, and DIR/.#-FILE regular files on MS-Windows hosts. (MAKE_LOCK_NAME, unlock_file, Ffile_locked_p): Use SAFE_ALLOCA to avoid problems with long file names. (MAX_LFINFO): Now a local constant, not a global macro. (IS_LOCK_FILE): Remove. (lock_file_1): Don't inspect errno if symlink call succeeds; that's not portable. (lock_file): Document that this function can return if lock creation fails. Fixes: debbugs:13807
-
Glenn Morris authored
-
Paul Eggert authored
(validate_interval_range, Fadd_text_properties) (Fremove_text_properties): Prefer bool to int when either works.
-
Glenn Morris authored
-