summaryrefslogtreecommitdiff
path: root/lisp
Commit message (Collapse)AuthorAgeFilesLines
* (compilation-set-window-height): New function,Richard M. Stallman1994-08-081-11/+20
| | | | | | | | broken out from compile-internal. Don't change window height if it is the frame root window. (compile-internal): Call it. (compilation-goto-locus): Call it. Use any visible frame already showing the compilation buffer.
* (gnus-start-news-server): Fix the call to `error'.Richard M. Stallman1994-08-081-1/+1
|
* (Info-additional-directory-list): New variable.Richard M. Stallman1994-08-071-1/+9
| | | | (Info-find-node): Use it.
* (completion-base-size): New variable.Richard M. Stallman1994-08-071-4/+13
| | | | | | | (completion-list-mode): Make it local. (choose-completion): Pass its value to choose-completion-string. (choose-completion-string): New arg base-size. Use that when deciding how much to delete.
* (PC-do-completion): Set completion-base-size.Richard M. Stallman1994-08-071-1/+15
|
* (mouse-choose-completion): Pass completion-base-size valueRichard M. Stallman1994-08-071-2/+4
| | | | to choose-completion-string.
* Doc fixes.Richard M. Stallman1994-08-071-7/+18
| | | | (c-macro-expansion): Capture and display CPP error messages.
* (tex-mode): Accept documentclass when checking Slitex.Richard M. Stallman1994-08-071-1/+1
|
* Require timezone when loading this file.Richard M. Stallman1994-08-071-2/+3
| | | | Move the provide call to the end.
* (choose-completion): Bury or iconify the completion listRichard M. Stallman1994-08-061-2/+11
| | | | using code copied from mouse-choose-completion.
* (indent-c-exp): Preserve point when handling comments.Richard M. Stallman1994-08-061-11/+12
|
* (byte-after-unbind-ops): Fix paren error wrt doc string.Richard M. Stallman1994-08-061-4/+4
|
* (font-lock-hack-keywords): Delete debugging code.Richard M. Stallman1994-08-061-1/+0
|
* (tex-mode): Check for documentclass like documentstyle.Richard M. Stallman1994-08-061-1/+1
|
* (save-buffer): Unconditionally make a backup with 2 orRichard M. Stallman1994-08-061-1/+2
| | | | 3 C-u's even if make-backup-files is nil.
* (Info-directory-list): Doc fix.Richard M. Stallman1994-08-061-2/+5
|
* (x-fixed-font-alist): Regularize how fonts are specified.Richard M. Stallman1994-08-051-19/+24
|
* (display-time-filter): pm starts at 12, not 13.Richard M. Stallman1994-08-051-1/+1
|
* (ad-subr-arglist): Adapted to new DOC file format.Richard M. Stallman1994-08-051-7/+16
|
* (font-lock-syntax-table): New syntax table.Richard M. Stallman1994-08-051-44/+65
| | | | | (font-lock-hack-keywords): Use it temporarily here. (font-lock-set-defaults): Set up special syntax table for C and C++.
* (select-tags-table): Doc fix.Richard M. Stallman1994-08-051-1/+1
|
* (isearch-mode-map): Delete mouse-2, down-mouse-2 bindings.Richard M. Stallman1994-08-051-4/+1
|
* (frame-delete-all): Copy the whole alist first.Richard M. Stallman1994-08-041-0/+1
|
* (rmail-select-summary): Preserve rmail buffer's value ofRichard M. Stallman1994-08-041-12/+19
| | | | rmail-total-messages even while summary buffer is current.
* (byte-compile-protect-from-advice): Macro deleted.Richard M. Stallman1994-08-041-91/+60
| | | | (byte-compile-from-buffer, byte-compile-top-level): Don't use it.
* New handling of automatic advice activation thatRichard M. Stallman1994-08-041-594/+283
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | exploits modified built-in versions of `fset' and `defalias' which take care of this functionality directly: (ad-start-advice-on-load, ad-activate-on-definition) (ad-definition-hooks, ad-enable-definition-hooks, ad-defined-function) (ad-advised-definers, ad-advised-byte-compilers, byte-constant) (byte-constant-limit, byte-constant2, byte-fset) (ad-byte-code-fset-regexp): Variables deleted. (ad-activate-defined-function, ad-find-fset-in-byte-code) (ad-scan-byte-code-for-fsets, ad-advised-byte-code) (ad-recover-byte-code, ad-enable-definition-hooks) (ad-disable-definition-hooks): Functions deleted. (defun, defmacro, fset, defalias, define-function) (byte-compile-from-buffer, byte-compile-top-level): Removed `defadvice' for these functions. (ad-save-real-definitions): Removed saving of `byte-code'. (ad-activate-off): New dummy function. (ad-activate-on): New name for `ad-activate'. All calls changed. (ad-with-auto-activation-disabled): New macro prevents automatic advice activation. (ad-safe-fset): New function, used instead of `ad-real-fset'. (ad-compile-function): Disable automatic advice activation while compiling, because `byte-compile' uses `fset'. (ad-activate-on): Renamed from `ad-activate'. Avoid recursive calls. (ad-activate-on-top-level): New variable. (ad-start-advice, ad-stop-advice, ad-recover-normality): Modified to achieve de/activation of automatic advice activation by setting the definition of `ad-activate' to `ad-activate-on' or `ad-activate-off'. (ad-start-advice): Is now called unconditionally when Advice is loaded. Made compilation behavior of advised definitions customizable, since loading the byte-compiler takes some time and is not always worth the cost, e.g., if one only wants to make a few simple modifications: (ad-default-compilation-action): New variable which specifies whether to compile an advised definition in case the COMPILE argument to `ad-activate-on' or one of its friends was supplied as nil. (ad-preactivate-advice): Supply negative COMPILE argument to prevent compilation. (ad-should-compile): New function. (ad-activate-advised-definition): Use `ad-should-compile' to determine whether an advised definition should get compiled. (ad-activate-on, ad-update, ad-activate-regexp, ad-update-regexp) (ad-activate-all): Doc fixes. (ad-update): Leave handling of COMPILE up to `ad-activate-on'. Extracted construction of freeze-advices from `defadvice': (ad-make-freeze-definition): New function. (defadvice): Use `ad-make-freeze-definition' to construct frozen defs.
* Doc fixes.Richard M. Stallman1994-08-041-12/+17
|
* (hilit-find-file-hook): Preserve buffer modified state.Richard M. Stallman1994-08-041-3/+5
|
* (end-of-buffer-other-window): Go to the end, not to the beginning.Richard M. Stallman1994-08-041-1/+1
|
* (ediff-version): Function, variable deleted.Richard M. Stallman1994-08-041-16/+1
| | | | | (ediff-date): Var deleted. (ediff-status-info): Don't call ediff-version.
* (appt-make-list): Do nothing unless range being processedRichard M. Stallman1994-08-041-65/+83
| | | | for diary entries includes today's date.
* (gnus-kill-files-directory): New variable.Richard M. Stallman1994-08-041-9/+11
| | | | (gnus-Newsgroup-kill-file, gnus-newsgroup-kill-file): Use it.
* (dired-mode): Put expanded name in list-buffers-directory.Richard M. Stallman1994-08-041-1/+1
|
* (icomplete-prime-minibuffer): Copy the hook lists after making them local.Richard M. Stallman1994-08-031-3/+5
|
* (iso-fix-iso2tex, iso-fix-tex2iso): Check plain-text-mode.Richard M. Stallman1994-08-031-2/+4
|
* (auto-mode-alist): Fix typos in comments.Karl Heuer1994-08-031-2/+2
|
* Capitalize some error messages.Richard M. Stallman1994-08-021-2/+4
| | | | (mouse-set-point): Nice error if button release is in scrollbar.
* Set up a "Compile" menubar item.Richard M. Stallman1994-08-021-0/+42
| | | | | | (recompile): New function. (previous-error): New function. (first-error): New function.
* (frame-delete-all): New function.Richard M. Stallman1994-08-021-4/+21
| | | | | (frame-notice-user-settings): Call it--with or without separate minibuffer frame.
* (rmail-mode-map): Fix the Get New Mail entry.Richard M. Stallman1994-08-021-13/+13
| | | | Add `...' where appropriate.
* (rmail-summary-mode-map): Add `...' where appropriate.Richard M. Stallman1994-08-021-11/+11
|
* (rmail-summary-mode-map): Fix typo.Richard M. Stallman1994-08-021-1/+1
|
* (rmail-mode-map): Fix the Get New Mail entry.Richard M. Stallman1994-08-021-1/+1
|
* (rmail-summary-mode-map): Fix the Get New Mail entry.Richard M. Stallman1994-08-021-1/+1
|
* (sendmail-send-it): Handle resent-to specially.Richard M. Stallman1994-08-021-3/+21
|
* (gnus-sortable-date): Use timezone-make-time-string.Richard M. Stallman1994-08-011-8/+7
|
* (insert-directory): Gracefully handle the caseRichard M. Stallman1994-08-011-5/+5
| | | | | where a file disappears between when it is listed in the directory and when the attributes are requested.
* (imenu, imenu--flatten-index-alist): Add marker support.Richard M. Stallman1994-08-011-7/+52
| | | | | | | | (imenu--cleanup): New function. (imenu-example--name-and-position): Now uses markers. (imenu-add-to-menubar): New function to add an entry to the menubar for the buffer's current local keymap.
* (dired-insert-directory): Call expand-file-name hereRichard M. Stallman1994-08-011-2/+5
| | | | because the dir name may have been abbreviated before.
* (compilation-error-regexp-alist): Fix previous change.Richard M. Stallman1994-08-011-1/+10
| | | | Add alternatives for GNU error messages with program name in them.