From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Sanford Selznick Newsgroups: gmane.emacs.help Subject: command-line emacs tops out at 16384? Date: Sun, 29 Jun 2003 20:13:58 -0700 Organization: Selznick Scientific Software, LLC Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1056942973 26484 80.91.224.249 (30 Jun 2003 03:16:13 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 30 Jun 2003 03:16:13 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Mon Jun 30 05:16:11 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19Wp9H-0006sy-00 for ; Mon, 30 Jun 2003 05:16:11 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19Wp8s-0006wD-ME for gnu-help-gnu-emacs@m.gmane.org; Sun, 29 Jun 2003 23:15:46 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!cox.net!news-xfer.cox.net!p01!fed1read03.POSTED!see Original-Newsgroups: gnu.emacs.help User-Agent: MT-NewsWatcher/3.3b1 (PPC Mac OS X) Original-Lines: 15 Original-NNTP-Posting-Host: 68.0.153.214 Original-X-Complaints-To: abuse@cox.net Original-X-Trace: fed1read03 1056942838 68.0.153.214 (Sun, 29 Jun 2003 23:13:58 EDT) Original-NNTP-Posting-Date: Sun, 29 Jun 2003 23:13:58 EDT Original-Xref: shelby.stanford.edu gnu.emacs.help:114839 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:11332 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:11332 I've created a file "/tmp/test" that contains 20000 characters. If I execute the following command on it from a console only the first 16384 characters are input. Why is this? This is supposed to execute c-style wrapping on /tmp/test, and works great for file lengths < 16384. emacs -batch -eval '(find-file "/tmp/test")' -eval '(c-mode)' -eval '(indent-region (point-min) (point-max) nil)' -eval '(save-buffer)' -eval '(kill-buffer (current-buffer))' Thank you, Sanford