summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>Katsumi Yamaoka2009-09-096-26/+56
| | | | | | | | | | | | | | | | | | | | | | * gnus-util.el (gnus-float-time): Alias to float-time if it exists. * ecomplete.el (with-no-warnings): Define it for old Emacsen. (ecomplete-add-item): Don't use (featurep 'xemacs) to check if float-time is available; suppress compile warning for time-to-seconds. 2009-09-07 Katsumi Yamaoka <yamaoka@jpl.org> * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA may break data. Suggested by Dmitri Paduchikh <dpaduch@k66.ru>. Add the optional argument `encoding' that overrides the default. * mml.el (mml-generate-mime-1): Pass encoding defined by a user to mm-encode-buffer. 2009-09-02 Karl Kleinpaste <karl@kleinpaste.org> * gnus-art.el (gnus-article-read-summary-keys): Fix gnus-buffer-configuration's value temporarily used.
* (where_is_internal): Filter out shadowed remappings.Stefan Monnier2009-09-092-55/+47
| | | | | Assume that where_is_internal returns unshadowed bindings to simplify the code and get rid of the gotos. Use ASIZE.
* Mention world-readable install.Glenn Morris2009-09-091-0/+4
|
* (ffap-file-at-point): Handle absolute (non-remote) files with lineGlenn Morris2009-09-092-2/+10
| | | | numbers too. (Bug#4374)
* (install-arch-indep): Don't recursively change perms ofGlenn Morris2009-09-092-8/+16
| | | | | | | site-lisp and infodir. There may be non-Emacs files in here, and the files supplied by Emacs are all handled explicitly already. (Bug#3800) (mkdir): Set umask to world-readable before creating directories. mkinstalldirs already checks if dirs exist, don't duplicate this test.
* (install): Set umask to world-readable before creating directories.Glenn Morris2009-09-092-1/+6
|
* ($(DESTDIR)${archlibdir}): Set umask to world-readable before creatingGlenn Morris2009-09-092-3/+8
| | | | directories and game score files.
* (Vtruncate_partial_width_windows): Improve docstring.Stefan Monnier2009-09-091-4/+4
|
* (smerge-remove-props, smerge-refine):Stefan Monnier2009-09-082-6/+9
| | | | Use with-silent-modifications (bug#4342).
* (with-silent-modifications): New macro.Stefan Monnier2009-09-083-0/+29
|
* Update.Juanma Barranquero2009-09-071-1/+1
|
* * files.el (top-level): Require `cl' when compiling.Juanma Barranquero2009-09-072-1/+7
|
* (proced-mode-map): Bind "d" to proced-mark-alt.Glenn Morris2009-09-072-1/+8
| | | | (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
* (auto-mode-alist): Use delphi-mode for .dpr files.Glenn Morris2009-09-072-0/+5
|
* Fix typos.Juanma Barranquero2009-09-072-10/+10
|
* Fix typo (again).Juanma Barranquero2009-09-071-1/+1
|
* Fix typo.Juanma Barranquero2009-09-071-1/+1
|
* * unidata/.gitignore: New file.Juanma Barranquero2009-09-072-4/+5
|
* (vc-git-annotate-command): Use separator to parseNick Roberts2009-09-061-1/+1
| | | | arguments correctly.
* *** empty log message ***Nick Roberts2009-09-061-0/+5
|
* (proced-mode): Doc fix.Eli Zaretskii2009-09-062-1/+5
|
* * net/tramp.el (tramp-perl-file-attributes): Print "nil" whenMichael Albinus2009-09-062-127/+150
| | | | | | | | lstat fails. (tramp-do-file-attributes-with-ls): Check for file existence at remote end. (tramp-do-file-attributes-with-stat): Likewise. (tramp-convert-file-attributes): Return nil when attr is nil.
* (diary-entry): Add help-echo and follow-link properties to this button.Glenn Morris2009-09-052-5/+12
| | | | | (diary-fancy-display): Don't extend the button to the final newline. (diary-fancy-display-mode): Continue to define "q" as a local key.
* (holiday-chinese): Make it slightly more efficient.Glenn Morris2009-09-052-31/+39
|
* (lisp-font-lock-keywords-2): Add letf.Glenn Morris2009-09-052-1/+3
|
* Mention that redefining the function byte-compile-dest-file is obsolete.Glenn Morris2009-09-051-0/+5
|
* (emacs-lisp-file-regexp): Doc fix.Glenn Morris2009-09-052-31/+85
| | | | | | | | | | | | | (byte-compile-dest-file-function): New option. (byte-compile-dest-file): Doc fix. Obey byte-compile-dest-file-function. (byte-compile-cl-file-p): New function. (byte-compile-eval): Only suppress noruntime warnings about cl functions if the cl-functions warning is enabled. Use byte-compile-cl-file-p. (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather than for file being previously loaded. (byte-compile-find-cl-functions): Use byte-compile-cl-file-p. (byte-compile-file-form-require): Handle the case where requiring a file indirectly causes CL to be loaded.
* Don't mention maintainer-clean, since `make bootstrap' does this now.Glenn Morris2009-09-051-7/+2
| | | | (With the exception that it does not remove Makefile from lisp/ or src/).
* Fix typos.Juanma Barranquero2009-09-051-27/+27
|
* * lisp/files.el (find-alternate-file): Run `kill-buffer-hook' manuallyKarl Fogel2009-09-052-2/+20
| | | | | | before killing the old buffer, since by the time `kill-buffer' is run so many buffer variables have been set to nil that it may not behave as expected. (Bug#4061)
* * lisp/files.el (find-alternate-file): If the old buffer is modifiedKarl Fogel2009-09-052-6/+15
| | | | | | | | and visiting a file, behave similarly to `kill-buffer' when killing it, thus reverting to the pre-1.878 behavior; see http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html for discussion. Also, consult `buffer-file-name' as a variable not as a function, for consistency with the rest of the code.
* 2009-09-05 Carsten Dominik <dominik@u016822.science.uva.nl>Carsten Dominik2009-09-051-1/+1
| | | | | * org-gnus.el (require): Wrap (require gnus-sum) into eval-when-compils.
* *** empty log message ***Carsten Dominik2009-09-051-0/+5
|
* Fix some dates.Juanma Barranquero2009-09-051-6/+6
|
* Fix whitespace.Juanma Barranquero2009-09-051-10/+10
|
* * net/tramp-compat.el (tramp-compat-line-beginning-position): New defun.Michael Albinus2009-09-042-0/+18
|
* * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"Michael Albinus2009-09-041-6/+3
| | | | also when adding a new directory.
* Remove leading * from defcustom and defface docs.Glenn Morris2009-09-0410-72/+77
|
* Reword header to fool copyright-update-year.Glenn Morris2009-09-041-8/+8
| | | | Remove leading * from defcustom and defface docs.
* Reword the header to fool copyright-update-year.Glenn Morris2009-09-041-1/+1
|
* (x_focus_changed): If we get a focusout and pointerJan Djärv2009-09-042-0/+6
| | | | is invisible, make it visible.
* Must define x_*_window_to_frame for non-toolkit.Jan Djärv2009-09-041-0/+5
|
* * xterm.h: Remove condition for declaration ofJan Djärv2009-09-042-2/+5
| | | | x_*_window_to_frame.
* (locate-file-completion-table): Make it provide boundaryStefan Monnier2009-09-042-8/+23
| | | | information, so partial-completion works better.
* (Footnote-text-under-cursor):Stefan Monnier2009-09-042-1/+7
| | | | Check footnote-text-marker-alist before using it (bug#4324).
* fancy diary and view mode.Glenn Morris2009-09-041-0/+2
|
* (diary-fancy-display): Only switch modes if necessary.Glenn Morris2009-09-042-2/+16
| | | | | | (diary-fancy-overriding-map): New variable. (diary-fancy-display-mode): Set minor-mode-overriding-map-alist. Use view-mode.
* (vc-rcs-annotate-command): Use forward-line rather than goto-line.Glenn Morris2009-09-042-2/+9
|
* Use default-value rather than default-enable-multibyte-characters.Glenn Morris2009-09-043-7/+18
|
* (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, orGlenn Morris2009-09-041-13/+11
| | | | mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.