Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
77176e73
Commit
77176e73
authored
May 11, 1991
by
Roland McGrath
Browse files
*** empty log message ***
parent
483e630e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
5 deletions
+25
-5
lisp/replace.el
lisp/replace.el
+4
-1
lisp/reposition.el
lisp/reposition.el
+2
-0
lisp/textmodes/paragraphs.el
lisp/textmodes/paragraphs.el
+19
-4
No files found.
lisp/replace.el
View file @
77176e73
;; Replace commands for Emacs.
;; Copyright (C) 1985
, 1986
Free Software Foundation, Inc.
;; Copyright (C) 1985
-1991
Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
...
...
@@ -18,6 +18,9 @@
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
;;;###autoload (defconst case-replace t "\
;;;###autoload *Non-nil means query-replace should preserve case in replacements.")
;;;###autoload
(
defun
query-replace
(
from-string
to-string
&optional
arg
)
"Replace some occurrences of FROM-STRING with TO-STRING.
...
...
lisp/reposition.el
View file @
77176e73
...
...
@@ -161,6 +161,8 @@ first comment line visible (if point is in a comment)."
;;(repos-debug-macro "4")
))))
;;;###autoload (define-key esc-map "\C-l" 'resposition-window)
;;; Auxiliary functions
;; Return number of screen lines between START and END.
...
...
lisp/textmodes/paragraphs.el
View file @
77176e73
;; Paragraph and sentence parsing.
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; Copyright (C) 1985
-1991
Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
...
...
@@ -18,9 +18,24 @@
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
(
defvar
paragraph-ignore-fill-prefix
nil
"Non-nil means the paragraph commands are not affected by `fill-prefix'.
This is desirable in modes where blank lines are the paragraph delimiters."
)
;;;###autoload (defconst paragraph-start "^[ \t\n\f]"
;;;###autoload "*Regexp for beginning of a line that starts OR separates paragraphs.")
;;;###autoload (defconst paragraph-separate "^[ \t\f]*$"
;;;###autoload "*Regexp for beginning of a line that separates paragraphs.
;;;###autoload If you change this, you may have to change paragraph-start also.")
;;;###autoload (defconst sentence-end (purecopy "[.?!][]\"')}]*\\($\\| $\\|\t\\| \\)[ \t\n]*") "\
;;;###autoload *Regexp describing the end of a sentence.
;;;###autoload All paragraph boundaries also end sentences, regardless.")
;;;###autoload (defconst page-delimiter "^\014" "\
;;;###autoload *Regexp describing line-beginnings that separate pages.")
;;;###autoload (defvar paragraph-ignore-fill-prefix nil
;;;###autoload "Non-nil means the paragraph commands are not affected by `fill-prefix'.
;;;###autoload This is desirable in modes where blank lines are the paragraph delimiters.")
(
defun
forward-paragraph
(
&optional
arg
)
"Move forward to end of paragraph.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment