From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Scott Frazer Newsgroups: gmane.emacs.help Subject: Re: [C-u M-q] -> unfill-paragraph Date: Thu, 10 Nov 2011 14:00:14 -0500 Message-ID: References: <8739dwbpgz.fsf@ericabrahamsen.net> <87r51h0zhn.fsf@pobox.com> <87lirn28ea.fsf@pobox.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1320951926 30682 80.91.229.12 (10 Nov 2011 19:05:26 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 10 Nov 2011 19:05:26 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Nov 10 20:05:20 2011 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ROZw7-0001wp-NC for geh-help-gnu-emacs@m.gmane.org; Thu, 10 Nov 2011 20:05:19 +0100 Original-Received: from localhost ([::1]:53345 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ROZw7-0003v3-4r for geh-help-gnu-emacs@m.gmane.org; Thu, 10 Nov 2011 14:05:19 -0500 Original-Received: from eggs.gnu.org ([140.186.70.92]:37523) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ROZw2-0003ur-Bd for help-gnu-emacs@gnu.org; Thu, 10 Nov 2011 14:05:15 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ROZw1-0003lp-HP for help-gnu-emacs@gnu.org; Thu, 10 Nov 2011 14:05:14 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]:58497) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ROZw1-0003lR-CE for help-gnu-emacs@gnu.org; Thu, 10 Nov 2011 14:05:13 -0500 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1ROZvx-0001oj-4J for help-gnu-emacs@gnu.org; Thu, 10 Nov 2011 20:05:09 +0100 Original-Received: from dhcp-64-102-76-124.cisco.com ([64.102.76.124]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 10 Nov 2011 20:05:09 +0100 Original-Received: from frazer.scott by dhcp-64-102-76-124.cisco.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 10 Nov 2011 20:05:09 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 18 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: dhcp-64-102-76-124.cisco.com User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:5.0) Gecko/20110624 Thunderbird/5.0 In-Reply-To: <87lirn28ea.fsf@pobox.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 80.91.229.12 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:82845 Archived-At: On 11/10/11 12:29 PM, Tom Roche wrote: > > Tom Roche Wed, 09 Nov 2011 16:15:00 -0500 >>> $ emacs --version >>> GNU Emacs 23.3.1 > >>> on which M-q "runs the command fill-paragraph". Therefore ISTM >>> C-u M-q should run the command unfill-paragraph ... but it does not. Try this: (defun my-fill-paragraph (&optional arg) (interactive "P") (let ((fill-column (if arg (point-max) fill-column))) (fill-paragraph))) (global-set-key (kbd "M-q") 'my-fill-paragraph)