Mercurial > hg > xemacs-beta
annotate nt/paths.h @ 5655:b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
lisp/ChangeLog addition:
2012-05-05 Aidan Kehoe <kehoea@parhasard.net>
Remove some redundant functions; turn other utility functions into
labels, avoiding visibility in the global namespace, and reducing
the size of the dumped binary.
* auto-save.el (auto-save-unhex): Removed.
* auto-save.el (auto-save-unescape-name): Use #'string-to-number
instead of #'auto-save-unhex.
* files.el (save-some-buffers):
* files.el (save-some-buffers-1): Changed to a label.
* files.el (not-modified):
* gui.el (make-gui-button):
* gui.el (gui-button-action): Changed to a label.
* gui.el (insert-gui-button):
* indent.el (indent-for-tab-command):
* indent.el (insert-tab): Changed to a label.
* indent.el (indent-rigidly):
* isearch-mode.el:
* isearch-mode.el (isearch-ring-adjust):
* isearch-mode.el (isearch-ring-adjust1): Changed to a label.
* isearch-mode.el (isearch-pre-command-hook):
* isearch-mode.el (isearch-maybe-frob-keyboard-macros): Changed to
a label.
* isearch-mode.el (isearch-highlight):
* isearch-mode.el (isearch-make-extent): Changed to a label.
* itimer.el:
* itimer.el (itimer-decrement): Removed, replaced uses with decf.
* itimer.el (itimer-increment): Removed, replaced uses with incf.
* itimer.el (itimer-signum): Removed, replaced uses with minusp, plusp.
* itimer.el (itimer-name):
* itimer.el (check-itimer): Removed, replaced with #'check-type calls.
* itimer.el (itimer-value):
* itimer.el (check-itimer-coerce-string): Removed.
* itimer.el (itimer-restart):
* itimer.el (itimer-function):
* itimer.el (check-nonnegative-number): Removed.
* itimer.el (itimer-uses-arguments):
* itimer.el (check-string): Removed.
* itimer.el (itimer-function-arguments):
* itimer.el (itimer-recorded-run-time):
* itimer.el (set-itimer-name):
* itimer.el (set-itimer-value):
* itimer.el (set-itimer-value-internal):
* itimer.el (set-itimer-restart):
* itimer.el (set-itimer-function):
* itimer.el (set-itimer-is-idle):
* itimer.el (set-itimer-recorded-run-time):
* itimer.el (get-itimer):
* itimer.el (delete-itimer):
* itimer.el (start-itimer):
* itimer.el (activate-itimer):
* itimer.el (itimer-edit-set-field):
* itimer.el (itimer-edit-next-field):
* itimer.el (itimer-edit-previous-field):
Use incf, decf, plusp, minusp and the more general argument type
checking macros.
* lib-complete.el:
* lib-complete.el (lib-complete:better-root): Changed to a label.
* lib-complete.el (lib-complete:get-completion-table): Changed to
a label.
* lib-complete.el (read-library-internal): Include labels.
* lib-complete.el (lib-complete:cache-completions): Changed to a
label.
* minibuf.el (read-buffer): Use #'set-difference, don't reinvent it.
* newcomment.el (comment-padright): Use a label instead of
repeating a lambda expression.
* packages.el (package-get-key):
* packages.el (package-get-key-1): Removed, use #'getf instead.
* simple.el (kill-backward-chars): Removed; this isn't used.
* simple.el (what-cursor-position):
(lambda (arg) (format "%S" arg) -> #'prin1-to-string.
* simple.el (debug-print-1): Renamed to #'debug-print.
* simple.el (debug-print): Removed, #'debug-print-1 was equivalent.
* subr.el (integer-to-bit-vector): check-nonnegative-number no
longer available.
* widget.el (define-widget):
* widget.el (define-widget-keywords): Removed, this was long obsolete.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sat, 05 May 2012 18:42:00 +0100 |
parents | 4be1180a9e89 |
children |
rev | line source |
---|---|
100 | 1 /* Hey Emacs, this is -*- C -*- code! */ |
2 | |
3 /* Synched up with: Not synched with FSF. */ | |
4 | |
5 /* Think twice before editing this file. Generated automatically by configure. | |
6 | |
7 The file startup.el guesses at reasonable values for load-path, exec-path, | |
8 and lock-directory. This means that if you move emacs and its associated | |
9 sub-tree to a different place in the filesystem, or to a different machine, | |
10 you won't have to do anything for it to work. | |
11 | |
12 If you define the paths in this file then they will take precedence over | |
13 any value generated by the heuristic in startup.el. The hardcoded paths | |
14 will be checked to see if they are valid, in which case they will be used. | |
15 Otherwise the editor will attempt to make its normal guess. | |
16 | |
17 See the NEWS file for a description of the heuristic used to locate the lisp | |
18 and exec directories at startup time. If you are looking at this file | |
19 because you are having trouble, then you would be much better off arranging | |
20 for those heuristics to succeed than defining the paths in this file. | |
21 | |
22 ** Let me say that again. If you're editing this file, you're making | |
23 ** a mistake. Re-read the section on installation in ../etc/NEWS. | |
24 | |
25 If it defines anything, this file should define some subset of the following: | |
26 | |
27 PATH_PREFIX The default value of `prefix-directory'. This is the | |
28 default root for everything. | |
29 | |
30 PATH_LOADSEARCH The default value of `load-path'. | |
31 | |
32 PATH_EXEC The default value of `exec-directory' and `exec-path'. | |
33 (exec-path also contains the value of whatever is in | |
34 the PATH environment variable.) | |
35 | |
36 PATH_DATA The default value of `data-directory'. This | |
37 is where architecture-independent files are | |
38 searched for. | |
39 | |
40 PATH_LOCK The name of the directory that contains lock files | |
41 with which we record what files are being modified in | |
42 Emacs. This directory should be writable by everyone. | |
43 If this is specified, the string must end with a slash! | |
44 | |
45 PATH_SUPERLOCK The name of the file !!!SuperLock!!! in the lock | |
46 directory. You probably should let this default... | |
47 | |
48 PATH_INFO The default value of `Info-directory-list'. | |
49 This is where info files are searched for. */ |