From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "B. T. Raven" Newsgroups: gmane.emacs.help Subject: Simple function works in ver. 21.3 but not in 22.0 Date: Wed, 21 Mar 2007 23:00:11 -0500 Organization: UseNetServer.com Message-ID: 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: sea.gmane.org 1174538327 13970 80.91.229.12 (22 Mar 2007 04:38:47 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 22 Mar 2007 04:38:47 +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 Mar 22 05:38:41 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HUF4T-0001Ua-2k for geh-help-gnu-emacs@m.gmane.org; Thu, 22 Mar 2007 05:38:41 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HUF6D-0002zb-CW for geh-help-gnu-emacs@m.gmane.org; Wed, 21 Mar 2007 23:40:29 -0500 Original-Path: shelby.stanford.edu!newshub.stanford.edu!postnews.google.com!news4.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!nx02.iad01.newshosting.com!newshosting.com!208.49.83.146.MISMATCH!uns-out.usenetserver.com!news.usenetserver.com!pc03.usenetserver.com!DIALUPUSA.NET!not-for-mail User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) Original-Newsgroups: gnu.emacs.help Original-X-Complaints-To: abuse@usenetserver.com Original-Lines: 26 Original-X-Trace: a371f4601ff56a13ab44407064 Original-Xref: shelby.stanford.edu gnu.emacs.help:146490 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:42095 Archived-At: Does any of you know why this should not work in version 22.0 (w32)?: (defun unfill-paragraph () ;; bound to C-x M-q "Do the opposite of fill-paragraph; stuff all lines in the current paragraph into a single long line." (interactive) (let ((fill-column 90002000)) (fill-paragraph nil))) C-h k C-x M-q does show that the function is bound to that key sequence, with: (global-set-key "\C-x\M-q" 'unfill-paragraph) The only other settings that I can think might affect this (under custom-set-variables) are: '(sentence-end "[.?!][]\"')}]*\\($\\| $\\| \\| \\)[ ]*") '(sentence-end-double-space nil) It looks like fill-paragraph is ignoring the fill-column value in the let form. Any ideas? Ed.