1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-20 10:23:57 +00:00
Commit Graph

15314 Commits

Author SHA1 Message Date
Glenn Morris
752fac1853 Move here from ../ 2008-10-30 04:35:15 +00:00
Glenn Morris
976556c921 (locate-dominating-stop-dir-regexp): Fix typo. 2008-10-30 04:32:33 +00:00
Chong Yidong
bb07cb70dd * electric.el (Electric-pop-up-window): Don't shrink the window if
it's already big enough.
2008-10-29 21:42:28 +00:00
Chong Yidong
623e480f94 * minibuffer.el (delete-minibuffer-contents): Delete all
minibuffer contents instead of just the current field.
2008-10-29 21:30:23 +00:00
Chong Yidong
8a7c2fb5c4 * tmm.el (tmm-get-keymap): Handle case where keyseq cache is omitted. 2008-10-29 20:56:53 +00:00
Chong Yidong
6515ca91dc * bookmark.el (bookmark-get-bookmark-record): Signal error for invalid
bookmark.
2008-10-29 18:21:50 +00:00
Chong Yidong
de4dc6067a * bookmark.el (bookmark-handle-bookmark): Rename from
bookmark-jump-noselect.
(bookmark--jump-via, bookmark-insert): Callers changed.
(bookmark-jump-noselect): Wrapper function for
bookmark-handle-bookmark.
2008-10-29 17:42:05 +00:00
Chong Yidong
21d57aa225 * textmodes/ispell.el (ispell-word): Use use-region-p. 2008-10-29 15:50:39 +00:00
Juanma Barranquero
19423c532d Rename tooltip-hook' to tooltip-functions'.
* tooltip.el (tooltip-functions): Rename from `tooltip-hook',
  to follow naming conventions for abnormal hooks.  Doc fix.
  (tooltip-mode, tooltip-timeout): Use it.
  (tooltip-hook): New obsolete alias.
  (tooltip-help-tips): Doc fix.

* progmodes/gud.el (gud-tooltip-mode): Use `tooltip-functions'.
2008-10-29 12:10:20 +00:00
Juanma Barranquero
f77b11a051 * server.el, emacsclient.c: Use TMPDIR (default /tmp) instead of hardcoded /tmp. 2008-10-29 10:42:31 +00:00
Glenn Morris
f0e35aeb62 (dbus-get-unique-name, dbus-debug): Declare. 2008-10-29 06:52:05 +00:00
Glenn Morris
dc515cca56 Sung has assignment. 2008-10-29 02:55:29 +00:00
Stefan Monnier
2279ba847f (quail-show-guidance): Don't create a guidance-frame if current buffer is
not a minibuffer, since even if selected-window is mini-p, the buffer will
never be displayed in it, so it wil be usable for guidance.
2008-10-29 01:44:45 +00:00
Stefan Monnier
a8028e7bcf Require diff-mode at run-time as well. 2008-10-28 20:43:44 +00:00
Martin Rudalics
37e14a62f5 (vc-stay-local): Fix typo in choice. 2008-10-28 18:52:02 +00:00
Martin Rudalics
efe0da9c0e (vc-cvs-stay-local): Fix typo in choice. 2008-10-28 17:57:09 +00:00
Martin Rudalics
437cfececb *** empty log message *** 2008-10-28 17:43:52 +00:00
Martin Rudalics
99dfcc0d52 (follow-scroll-down, follow-calc-win-end)
(follow-estimate-first-window-start): Reduce effective window
height when header line is present.
2008-10-28 17:36:34 +00:00
Juanma Barranquero
4ab2b63c99 #870 again. :( 2008-10-28 11:49:19 +00:00
Juanma Barranquero
2bea27959e * subr.el (locate-user-emacs-file): Simplify. Don't create
`user-emacs-directory' when Emacs is running in batch mode.
2008-10-28 11:35:02 +00:00
Juanma Barranquero
eeaa563e84 * startup.el (inhibit-startup-screen): Reflow docstring.
(user-mail-address, tool-bar-images-pixel-height): Fix docstring typos.
2008-10-28 11:17:05 +00:00
Juanma Barranquero
16c1ddc2d5 * face-remap.el (text-scale-increase, text-scale-decrease)
(text-scale-adjust): Remove &optional keyword from the arg list;
  the INC argument is not really optional, if the functions happen
  to be called from elisp.
2008-10-27 10:37:41 +00:00
Dan Nicolaescu
13ad745788 * vc.el: Rename VC methods that were missed when vc-status was
renamed to vc-dir.
* vc-svn.el (vc-svn-dir-extra-headers): Rename from
vc-svn-status-extra-headers.
* vc-hg.el (vc-hg-dir-printer): Rename from vc-hg-status-printer.
(vc-hg-dir-extra-header): Rename from vc-hg-status-extra-headers.
* vc-git.el (vc-git-dir-printer): Rename from vc-dir-status-printer.
(vc-git-dir-extra-headers): Rename from vc-git-status-extra-headers.
* vc-dir.el (vc-dir-mode): Use vc-dir-printer instead of
vc-dir-status-printer.
(vc-dir-headers): Use `dir-extra-headers' instead of
`status-extra-headers'
(vc-dir-printer): Rename from vc-dir-status-printer.
(vc-default-dir-extra-headers): Rename from
vc-default-status-extra-headers.
* vc-cvs.el (vc-cvs-dir-extra-headers): Rename from
vc-cvs-status-extra-headers.
2008-10-27 07:21:43 +00:00
Dan Nicolaescu
4ff029f613 * emacs.c (daemon_name): New variable.
(main): Deal with --daemon=SERVER_NAME.
(Fdaemonp): Return a name if one was passed to --daemon.

* startup.el (server-name): Pacify byte compiler.
(command-line): If --daemon=SERVER_NAME was used, set server-name
before calling server-start.

* cmdargs.texi (Initial Options): Document -daemon=SERVER_NAME.
2008-10-27 07:02:30 +00:00
Dan Nicolaescu
5790ef40ba * startup.el (command-line): Call daemon-initialized after
starting the server.
* emacs.c (daemon_pipe): New variable
(main): Create a pipe before forking, make the parent exit only after
the child has closed its end of the pipe.  Move closing the
descriptors ...
(Fdaemon_initialized): ... here.  New function.
2008-10-26 19:05:47 +00:00
Kenichi Handa
91c491e051 Docstrings of categories improved again. 2008-10-26 13:18:46 +00:00
Stefan Monnier
f75501733f (python-mode): Don't impose ourselves on hippie. 2008-10-26 05:10:54 +00:00
Stefan Monnier
f37a389e68 * faces.el (face-font-family-alternatives): Add "CMU Typewriter Text"
to the courier family.
* textmodes/tex-mode.el (tex-verbatim): Don't use "monospace" which is
usually not serif'd and hence rather unlike verbatim's printed output.
2008-10-26 04:32:09 +00:00
Stefan Monnier
b657604982 *** empty log message *** 2008-10-26 03:39:55 +00:00
Chong Yidong
ddf59b5f58 * vc-cvs.el (vc-cvs-status-extra-headers): Use full directory name
when reporting the module.
2008-10-25 20:59:29 +00:00
Chong Yidong
fafd297956 * vc-dir.el (vc-dir-mode-map): Add follow-link behavior. 2008-10-25 18:28:26 +00:00
Martin Rudalics
83f57f499a (with-current-buffer): Rename buffer argument to buffer-or-name. 2008-10-25 09:18:19 +00:00
Martin Rudalics
cf20330bba (get-buffer-window-list): Rename buffer argument to
buffer-or-name and make it optional.
2008-10-25 08:08:19 +00:00
Juanma Barranquero
ea6c930a8d * completion.el (add-completion-to-head, add-completion): Doc fixes.
(completion-search-next, add-completions-from-file):
  Fix typos in docstrings.

* filesets.el (filesets-menu-ensure-use-cached)
  (filesets-ingroup-patterns, filesets-filetype-property):
* tutorial.el (get-lang-string):
* play/gamegrid.el (gamegrid-score-file-length, gamegrid-add-score):
  Fix typos in docstrings.

* image-dired.el (image-dired-dired-after-readin-hook): Doc fix.
  (image-dired-line-up-method, image-dired-thumb-size)
  (image-dired-cmd-write-exif-data-options, image-dired-write-tags)
  (image-dired-track-original-file, image-dired-track-thumbnail)
  (image-dired-dired-next-line, image-dired-dired-previous-line)
  (image-dired-write-comments): Reflow docstrings.
  (image-dired-show-all-from-dir-max-files)
  (image-dired-format-properties-string, image-dired-create-thumbs)
  (image-dired-mark-tagged-files, image-dired-gallery-generate):
  Fix typos in docstrings.

* savehist.el (savehist-save-minibuffer-history, savehist-file)
  (savehist-additional-variables, savehist-ignored-variables)
  (savehist-file-modes, savehist-autosave-interval):
* startup.el (inhibit-startup-echo-area-message, inhibit-default-init)
  (inhibit-startup-buffer-menu, mail-host-address, user-mail-address)
  (fancy-splash-image):
* thumbs.el (thumbs-thumbsdir, thumbs-geometry, thumbs-relief)
  (thumbs-conversion-program, thumbs-margin):
  Remove spurious * in docstrings.
2008-10-25 00:46:25 +00:00
Chong Yidong
ba28670836 Remove unnecessary "tiny change" tag for Aaren Hawley. 2008-10-25 00:13:30 +00:00
Chong Yidong
a6e62f2e84 * thingatpt.el (end-of-sexp, beginning-of-sexp)
(forward-same-syntax): Omit default arguments to char-after and
char-before.
2008-10-25 00:12:24 +00:00
Juanma Barranquero
945a0a0ccc Revert part of last change; it breaks bootstrapping on some systems. 2008-10-24 22:50:13 +00:00
Juanma Barranquero
d6c180c46b New function `locate-user-emacs-file'.
* subr.el (locate-user-emacs-file): New function.
  (user-emacs-directory): Mention it in docstring.

* completion.el (save-completions-file-name):
* filesets.el (filesets-menu-cache-file):
* image-dired.el (image-dired-dir, image-dired-db-file)
  (image-dired-temp-image-file, image-dired-gallery-dir)
  (image-dired-temp-rotate-image-file):
* savehist.el (savehist-file):
* server.el (server-auth-dir):
* startup.el (auto-save-list-file-prefix):
* thumbs.el (thumbs-thumbsdir):
* tutorial.el (tutorial--saved-dir):
* play/gamegrid.el (gamegrid-user-score-file-directory): Use it.

* url.el (url-configuration-directory): Use `locate-user-emacs-file'.

* NEWS: New function `locate-user-emacs-file'.
2008-10-24 09:39:27 +00:00
Glenn Morris
d8c967ad2e tiny change is tiny. 2008-10-24 04:22:14 +00:00
Juanma Barranquero
802393f642 * edmacro.el (edmacro-eight-bits, edmacro-mode): Fix docstring typos.
(edmacro-mismatch, edmacro-sanitize-for-string): Doc fixes.
2008-10-23 23:52:14 +00:00
Chong Yidong
51d66d83df * filesets.el (filesets-data): Doc fix. 2008-10-23 22:31:08 +00:00
Chong Yidong
ad4f4a36a6 * filesets.el: Update author email. 2008-10-23 22:25:55 +00:00
Chong Yidong
84353206b9 * pcmpl-rpm.el (pcomplete/rpm): Make "rpm -qp" use file
completion.
2008-10-23 22:09:00 +00:00
Kenichi Handa
fd0dd4c366 (describe-language-environment): Indent sample text. 2008-10-23 08:05:36 +00:00
Glenn Morris
730ad3db85 (pcomplete/rpm): Doc fix. 2008-10-23 02:42:20 +00:00
Glenn Morris
0ee35e515b (flet): Throw an error when trying to byte-compile a redefinition of a
function with special byte-compile handling.  (Bug#411)
2008-10-23 02:40:37 +00:00
Vinicius Jose Latorre
c4abbb0493 Deal with page sizes of label printers. 2008-10-22 23:40:31 +00:00
Chong Yidong
00421bf575 * frame.el (make-frame-command): Doc fix. Use display-graphic-p. 2008-10-22 21:06:55 +00:00
Chong Yidong
d8ce500cff * thingatpt.el (sexp-at-point, symbol-at-point, number-at-point)
(list-at-point): Add docstrings.
2008-10-22 20:50:29 +00:00
Chong Yidong
1442fd9469 * dired.el (dired-get-marked-files, dired-map-over-marks): Doc fixes. 2008-10-22 20:37:05 +00:00