summaryrefslogtreecommitdiff
path: root/lisp
Commit message (Collapse)AuthorAgeFilesLines
* Comment fixes only.Noah Friedman1998-09-112-8/+8
|
* (type-break-mode): remove :version field from defcustom declaration.Noah Friedman1998-09-111-4/+3
| | | | | It's wreaking too much havoc with XEMacs and older versions of Emacs, which share this code.
* (resize-minibuffer-mode): remove :version field from defcustom declaration.Noah Friedman1998-09-111-3/+2
| | | | | It's wreaking too much havoc with XEMacs and older versions of Emacs, which share this code.
* (rlogin): If using make-local-hook, pass the 4th arg t to add-hook also toNoah Friedman1998-09-111-11/+14
| | | | modify the new local value.
* (vc-insert-headers): Doc fix.Dave Love1998-09-101-2/+2
|
* (flyspell-mode-on): Make theKarl Heuer1998-09-101-6/+13
| | | | | ispell-... variables permanent locals. (flyspell-mode-off): Add autoload cookie.
* (flyspell-mode-on): fix kill-buffer-hookKarl Heuer1998-09-101-2/+2
| | | | | to make killing of ispell process work even if kill-all-local-variables has been run.
* (mark-sexp-diary-entries): Avoid infinite loop whenKarl Heuer1998-09-101-1/+2
| | | | sexp entry ends at end of file with no newline.
* (ange-ftp-write-region): For `dumb-unix' host,Karl Heuer1998-09-101-30/+35
| | | | | do use binary mode, just as for `unix'. (ange-ftp-host-type): If HOST is nil, return `unix'.
* (dired-mark-files-containing-regexp):Karl Heuer1998-09-101-13/+15
| | | | Don't scan directories. Ignore non-readable files.
* (compilation-error-regexp-alist):Karl Heuer1998-09-101-1/+1
| | | | Fix previous change: allow . and _ in command name.
* (dired-mark-files-containing-regexp): Fix previous change.Karl Heuer1998-09-101-1/+1
|
* (uncompress-while-visiting):Karl Heuer1998-09-101-3/+3
| | | | Use just the car of what find-operation-coding-system returns.
* (Custom-save, Custom-reset-current, Custom-reset-saved)Karl Heuer1998-09-101-10/+17
| | | | (Custom-reset-standard): Fix menu inconsistency.
* (feedmail-from-line): Allow t.Karl Heuer1998-09-101-2/+2
| | | | (feedmail-message-id-suffix): Allow nil.
* (rmail-summary-output-to-rmail-file):Karl Heuer1998-09-101-9/+8
| | | | Simplify. Make prefix arg work right.
* (tex-start-tex): Call comint-quote-filename.Karl Heuer1998-09-101-1/+1
|
* (shell-file-name-quote-list): Add # to the value.Karl Heuer1998-09-101-1/+1
|
* (use-hard-newlines): Doc fix.Dave Love1998-09-091-1/+1
|
* (help-xref-interned): Bind inhibit-read-only whenDave Love1998-09-091-1/+2
| | | | inserting.
* (change-log-font-lock-keywords): Do parenthesizedDave Love1998-09-081-3/+8
| | | | | stuff only after file names or at start of line. Allow parens around e-mail, as well as angles.
* (require): Wrap requirement of w3 and url inDave Love1998-09-081-2/+10
| | | | | ignore-errors too, eval'd when compile. Require w3 stuff at load time for nicer failure if it's not available.
* (comint-arguments): Ignore backslashes when usingGeoff Voelker1998-09-071-7/+12
| | | | w32 shells that expect backslashes as the directory separator.
* (resolved-ascii-font): New variable.Kenichi Handa1998-09-071-5/+12
| | | | | | | | (x-complement-fontset-spec): By side effect, set `resolved-ascii-font' to the resolved name of ASCII font." (create-fontset-from-fontset-spec): Don't get a value for resolved-ascii-font from the list full-fontlist. It is set by x-complement-fontset-spec now.
* To make it work also on Emacs 20.2 and the earlierKenichi Handa1998-09-071-1/+1
| | | | version, check the value of mule-version.
* (reftex-view-crossref): Split up into several functions. No longer movesCarsten Dominik1998-09-071-207/+267
| | | | | | | | | | | | | | | | to find a macro. (reftex-view-cr-cite, reftex-view-cr-ref, reftex-end-of-bib-entry): New functions. (reftex-auto-view-crossref): New value `window' allowed. (reftex-view-crossref-when-idle): Process new `window' option in (reftex-translate-to-ascii-function): New default. (reftex-label-illegal-re): Default changed, removed Latin1. (reftex-latin1-to-ascii): New function. (reftex-what-environment): Check for section regexp before use. (reftex-find-tex-file, reftex-find-bib-file): Fixed bug with absolute path names. (reftex-TeX-master-file): Changed sequence of file checks. (reftex-do-citation): bibview cache only with RefTeX mode on.
* Doc fixes.Karl Heuer1998-09-069-46/+46
|
* (compilation-error-regexp-alist):Karl Heuer1998-09-061-1/+1
| | | | | In first pattern (GNU utilities and other things), allow a space after the optional program name at the beginning.
* (mail-hist-current-header-contents):Karl Heuer1998-09-061-1/+1
| | | | Fix previous change: use mail-header-end.
* (checkdoc-buffer-label): New function.Eric M. Ludlam1998-09-051-66/+79
| | | | | | | | | | (checkdoc-start-section, checkdoc-error): Use `checkdoc-buffer-label'. (checkdoc-this-string-valid-engine): Permit ? as terminating punctuation for first line sentence breaking. (checkdoc-this-string-valid): When converting a comment into a doc string, make sure " chars are \". (checkdoc-sentencespace-region-engine): Only do double space check if based on the variable `sentence-end-double-space'
* (lisp-imenu-generic-expression):Karl Heuer1998-09-041-1/+1
| | | | Recognize define-skeleton as a function definer.
* (customize-option): Refuse to customizeKarl Heuer1998-09-041-0/+22
| | | | | a variable that has no defcustom. But if variable is autoloaded, first try to load the library that defines it.
* Use `string' before calling `insert'Karl Heuer1998-09-041-96/+96
| | | | so that in multibyte buffers we insert multibyte chars.
* (dired-mark-files-containing-regexp):Karl Heuer1998-09-041-9/+12
| | | | Don't use find-file; instead, insert the file in a temp buffer.
* (netstat-program-options): Changed from nil to "-a"Karl Heuer1998-09-041-1/+2
| | | | so that by default netstat shows all network connections.
* (tex-start-options-string): New option.Karl Heuer1998-09-041-1/+8
| | | | (tex-start-tex): Use that variable.
* (rmail-primary-inbox-list): Make the initialKarl Heuer1998-09-041-3/+3
| | | | value in the `repeat' alternative a list.
* (fill-individual-paragraphs): Before deletingKarl Heuer1998-09-041-1/+2
| | | | the inserted newline, verify that one was really inserted.
* (smtpmail-via-smtp): Parse out the first wordKarl Heuer1998-09-041-1/+1
| | | | on extension lines.
* (flyspell-mode): Do nothing if modeKarl Heuer1998-09-041-9/+12
| | | | | remains on or remains off. (flyspell-multi-language-p): Default changed to nil.
* (ada-search-ignore-string-comment):Karl Heuer1998-09-041-3/+4
| | | | In "found in comment" case, don't beginning-of-line after forward-line.
* (byte-compile-inline-expand):Karl Heuer1998-09-041-2/+4
| | | | | If the function definition is not a lambda, return original FORM with no error.
* Doc fixes.Karl Heuer1998-09-041-8/+8
|
* (info): Don't add parens if FILE already has them.Karl Heuer1998-09-041-2/+9
|
* (w32-shell-dos-semantics): New function.Geoff Voelker1998-09-031-0/+7
|
* (quail-choose-completion-string): StoreKenichi Handa1998-09-031-4/+4
| | | | completion `choice' in `quail-current-str'; don't insert it.
* (bdf-generate-font): New argument CHARSET. Give WIDTHKenichi Handa1998-09-021-2/+3
| | | | argument to ps-mule-generate-bitmap-font.
* (register-input-method): Doc-string modified.Kenichi Handa1998-09-021-1/+14
|
* (ps-mule-font-info-database-bdf): The include ASCIIKenichi Handa1998-09-021-31/+59
| | | | | | | | | | | | | | | | entry and change Latin-1 entry in the default value. (ps-mule-font-info-database-ps-bdf): New variable. (ccl-encode-ethio-unicode): Bug of CCL code fixed. (ps-mule-generate-font): Give CHARSET arg to FONT-FUNC function registerd in FONT-SPEC. (ps-mule-bitmap-prologue): Fix PostScript code to realize correct charcter width of bitmap fonts. (ps-mule-generate-bitmap-font): Give COLUMNS arg to PostScript procedure NF. (ps-begin-file): Output PostScript code for setting SpaceWidthRatio. (ps-plot-region): Use line-beginning-position to get a position of the beginning of the current line.
* (current-language-environment): Fix setter function.Dave Love1998-09-011-1/+1
|