aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/simple.el (follow)
Commit message (Collapse)AuthorAgeFilesLines
* (completion-setup-function): Count completion-sizeEli Zaretskii2000-01-031-1/+1
| | | | from minibuffer-prompt-end, not from point-min.
* (choose-completion-string): In minibuffer,Richard M. Stallman1999-12-311-3/+7
| | | | do not delete the prompt string.
* (what-cursor-position): Show "(composed)" if theKenichi Handa1999-12-151-16/+9
| | | | character is composed.
* (kill-region): Use the new `delete-and-extract-region'Stefan Monnier1999-12-071-23/+6
| | | | rather than the undo log (which is incorrect with *-change-functions).
* (insert-buffer): Doc fix.Gerd Moellmann1999-12-061-1/+4
|
* (with-syntax-table): Don't switch buffers.Gerd Moellmann1999-11-211-4/+5
|
* (input-mode-8-bit): Fix the customization.Dave Love1999-11-181-4/+7
|
* (with-syntax-table): Save buffer explicitly instead ofGerd Moellmann1999-11-171-7/+10
| | | | using save-excursion.
* (with-syntax-table): New.Gerd Moellmann1999-11-161-0/+21
|
* * simple.el (backward-delete-char-untabify):Sam Steingold1999-11-151-27/+31
| | | | | backward-delete-char-untabify-method can be `all' now - to delete hungrily including newlines.
* (comment-region): Strip off white space at end ofGerd Moellmann1999-11-051-5/+11
| | | | comment-start.
* (previous-matching-history-element)Gerd Moellmann1999-11-041-2/+2
| | | | (next-history-element): Use delete-field instead of erase-field.
* (end-of-buffer): Use window-end to find the window endGerd Moellmann1999-11-011-11/+6
| | | | | instead of vertical-motion because this handles variable-height lines correctly.
* (input-mode-8-bit): New defcustom.Dave Love1999-10-261-0/+15
|
* (minibuffer-prompt-end): Return the positionGerd Moellmann1999-10-171-6/+2
| | | | | after the prompt, not the position of that last character of the prompt.
* Doc fixes.Gerd Moellmann1999-10-171-12/+40
| | | | | | | | | | | | | | | | | | | | | | (previous-matching-history-element, next-history-element): Change to work correctly even if the point is in the prompt. (choose-completion-string): Likewise. (minibuffer-prompt-width): New function (compatibility with old subr). (line-move): Supply new ESCAPE-FROM-EDGE argument to constrain-to-field. (line-move): Use constrain-to-field to avoid moving into a prompt. (previous-complete-history-element): Clarify doc string. (next-complete-history-element): Likewise. Use field-beginning instead of point-min. (next-matching-history-element): Use field-beginning and erase-field instead of point-min and erase-buffer. (previous-matching-history-element): Get the minibuffer input with field-string instead of buffer-string. (choose-completion-string): Likewise. (next-history-element): Likewise. Erase the minibuffer input with erase-field, not erase-buffer. Use field-beginning to find the beginning of the input.
* (shell-command, shell-command-on-region): use make-temp-file.Stefan Monnier1999-10-131-2/+99
| | | | (clone-buffer, clone-process, clone-buffer-hook): new functions.
* (eval-expression-print-level): New variable.Richard M. Stallman1999-09-141-3/+24
| | | | | | | (eval-expression-print-length): New variable. (eval-expression-debug-on-error): New variable. (eval-expression): Bind print-level, print-length and debug-on-error from those vars.
* (next-history-element): Use minibuffer-prompt-end onceGerd Moellmann1999-09-021-3/+1
| | | | again. Remove test for minibuffer-prompt-in-buffer.
* (shell-command, shell-command-on-region): UseEli Zaretskii1999-09-021-5/+9
| | | | | | make-temp-name properly. Use small-temporary-file-directory if non-nil, otherwise temporary-file-directory, to generate temporary files.
* (kill-word): Undo previous change.Gerd Moellmann1999-08-251-7/+4
|
* (next-history-element): Use minibuffer-prompt-end.Gerd Moellmann1999-08-211-4/+7
| | | | | Remove test for minibuffer-prompt-in-buffer. (kill-word): Don't move point into mini-buffer prompt.
* (assoc-ignore-case, assoc-ignore-representation): Moved to subr.el.Karl Heuer1999-08-161-22/+0
|
* Functions reordered.Karl Heuer1999-08-161-265/+274
|
* (hscroll-step, hscroll-point-visible, hscroll-window-column): RemoveDave Love1999-08-101-106/+0
| | | | now we have the mentioned real horizontal autoscrolling.
* (shell-command-on-region): EXIT-STATUS can be a string.Richard M. Stallman1999-08-011-1/+1
|
* (next-history-element): Set point to the end of theGerd Moellmann1999-07-231-1/+3
| | | | prompt if minibuffer-prompt-in-buffer.
* (append-to-buffer, prepend-to-buffer, copy-to-buffer): Check forDave Love1999-07-201-6/+9
| | | | | | readonly buffer in interactive spec. (zap-to-char, kill-line, kill-region, comment-region, kill-word) (backward-kill-word): Add * to interactive spec.
* (sendmail-user-agent-compose):Karl Heuer1999-06-121-1/+2
| | | | Ignore case when inserting the rest of the "other" headers.
* (shell-command): Avoid printing "mark set" message.Karl Heuer1999-06-101-1/+1
|
* (next-history-element):Karl Heuer1999-06-041-2/+4
| | | | Handle minibuffer-text-before-history properly when reading sexps.
* (append-next-kill): Use an arg to distinguishKarl Heuer1999-05-311-4/+6
| | | | interactive calls from Lisp calls, rather than (interactive-p).
* (zap-to-char): Doc fix.Karl Heuer1999-05-291-0/+1
|
* (indent-new-comment-line): Fix previous change.Karl Heuer1999-04-261-4/+6
|
* (shell-command-on-region): Cope with exit-status beingAndreas Schwab1999-03-271-1/+1
| | | | nil, which happens if call-process-region was interrupted.
* (indent-new-comment-line): Handle use at a pointKarl Heuer1999-03-261-2/+6
| | | | after a comment-end. Handle multiple comments.
* (what-cursor-position): Don't cause error when pointKenichi Handa1999-03-221-15/+18
| | | | is at invalid multibyte sequence.
* (shell-command-default-error-buffer): Renamed fromKarl Heuer1999-03-011-42/+84
| | | | | | | | | | shell-command-on-region-default-error-buffer. (shell-command-on-region): Mention in echo area when there is some error output. Mention success or failure, too. Accumulate multiple error outputs going forward, with formfeed in between. Display the error buffer when we have put something in it. (shell-command): Add the ERROR-BUFFER argument feature.
* (shell-command-on-region): Don't go into the REPLACE = tRichard M. Stallman1999-02-261-2/+1
| | | | case just because the current buffer is the output buffer.
* * simple.el (what-cursor-position): To show the character'sKenichi Handa1999-02-251-60/+34
| | | | | encoding, use encoded-string-description instead of information of chaset-origin-alist.
* (what-cursor-position): charset-origin-alist propertyKenichi Handa1999-02-221-1/+14
| | | | | of a coding system may be a translation table or a symbol of which `translation-table' property is a translation table.
* (turn-on-auto-fill): Mark it as an option for `text-mode-hook'.Richard M. Stallman1999-02-181-0/+1
|
* (what-cursor-position): Don't use the variableKenichi Handa1999-02-121-23/+34
| | | | | charset-origin-alist, but use charset-origin-alist property of buffer-file-coding-system to decide external character set code.
* (shell-command-on-region): Return command's exitDave Love1999-01-231-16/+20
| | | | status.
* (shell-command-on-region-default-error-buffer): New var.Richard M. Stallman1999-01-181-86/+96
| | | | | (shell-command-on-region): Use that variable as interactive value of ERROR-BUFFER argument.
* (join-line): New alias.Dave Love1999-01-151-0/+2
|
* (comment-region): Delete spaces only if weRichard M. Stallman1999-01-081-3/+6
| | | | deleted a comment starter.
* (what-cursor-position): Fix previous change.Richard M. Stallman1998-12-301-10/+10
|
* (what-cursor-position): Print character encoding also.Richard M. Stallman1998-12-271-30/+46
|
* (comment-region): Handle comment-paddingKarl Heuer1998-12-141-15/+22
| | | | separately for insertion and for deletion, in the right way for each.