Skip to content
Snippets Groups Projects
Commit 298e2ff48c66 authored by steveb's avatar steveb
Browse files

various bug fixes

parent 88249b34b6d4
No related branches found
No related tags found
No related merge requests found
1999-07-06 SL Baur <steve@miho.m17n.org>
* filladapt.el (fill-paragraph): Quote leading parenthesis.
(lisp-fill-paragraph): Ditto.
(fill-region-as-paragraph): Ditto.
(fill-region): Ditto.
From Bob Weiner <weiner@altrasoft.com>
1999-04-22 John H Palmieri <palmieri@member.ams.org>
* xpm-mode.el (xpm-parse-color):
......
......@@ -19,7 +19,7 @@
# This XEmacs package contains independent single file lisp packages
VERSION = 1.19
VERSION = 1.20
AUTHOR_VERSION =
MAINTAINER = XEmacs Development Team <xemacs-beta@xemacs.org>
PACKAGE = text-modes
......
......@@ -464,7 +464,7 @@
(defun fill-paragraph (arg)
"Fill paragraph at or after point. Prefix arg means justify as well.
(This function has been overloaded with the `filladapt' version.)
\(This function has been overloaded with the `filladapt' version.)
If `sentence-end-double-space' is non-nil, then period followed by one
space does not end a sentence, so don't break a line there.
......@@ -478,7 +478,7 @@
(defun lisp-fill-paragraph (&optional arg)
"Like \\[fill-paragraph], but handle Emacs Lisp comments.
(This function has been overloaded with the `filladapt' version.)
\(This function has been overloaded with the `filladapt' version.)
If any of the current line is a comment, fill the comment or the
paragraph of it that point is in, preserving the comment's indentation
......@@ -491,7 +491,7 @@
nosqueeze squeeze-after)
"Fill the region as one paragraph.
(This function has been overloaded with the `filladapt' version.)
\(This function has been overloaded with the `filladapt' version.)
It removes any paragraph breaks in the region and extra newlines at the end,
indents and fills lines between the margins given by the
......@@ -556,7 +556,7 @@
(defun fill-region (beg end &optional justify nosqueeze to-eop)
"Fill each of the paragraphs in the region.
(This function has been overloaded with the `filladapt' version.)
\(This function has been overloaded with the `filladapt' version.)
Prefix arg (non-nil third arg, if called from program) means justify as well.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment