From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: martin.gignac@gmail.com Newsgroups: gmane.emacs.help Subject: Issue with spanning cells above or below with table.el Date: 13 Oct 2006 13:39:09 -0700 Organization: http://groups.google.com Message-ID: <1160771949.528806.10790@i3g2000cwc.googlegroups.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: sea.gmane.org 1160772044 23215 80.91.229.2 (13 Oct 2006 20:40:44 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 13 Oct 2006 20:40:44 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Oct 13 22:40:44 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GYTpR-0004MO-9u for geh-help-gnu-emacs@m.gmane.org; Fri, 13 Oct 2006 22:40:25 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GYTpQ-0005U7-Sg for geh-help-gnu-emacs@m.gmane.org; Fri, 13 Oct 2006 16:40:24 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!newsfeed.news.ucla.edu!news.maxwell.syr.edu!postnews.google.com!i3g2000cwc.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 46 Original-NNTP-Posting-Host: 192.75.88.232 Original-X-Trace: posting.google.com 1160771953 16755 127.0.0.1 (13 Oct 2006 20:39:13 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Fri, 13 Oct 2006 20:39:13 +0000 (UTC) User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8.0.7) Gecko/20060909 Firefox/1.5.0.7,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: i3g2000cwc.googlegroups.com; posting-host=192.75.88.232; posting-account=tsxaDw0AAADUo4Emn3G55DuZeSrj9zYB Original-Xref: shelby.stanford.edu gnu.emacs.help:142396 Original-To: help-gnu-emacs@gnu.org 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:38017 Archived-At: Hi, I'm using Emacs 22.0.50.1 and use the table.el function a lot. I've noticed however that when I use the 'table-span-cell' command with the values 'above' or 'below' it doesn't work properly and spews out an error. To recreate the error everytime, here is what I do: 1. Issue the command 'table-insert' and create a 3 x 3 table with all default values (cell width:5, height:1). The following table is created: +-----+-----+-----+ | | | | +-----+-----+-----+ | | | | +-----+-----+-----+ | | | | +-----+-----+-----+ 2. Position the cursor at the top leftmost cell and issue the 'table-span-cell' command with an argument of below. 3. The following error is spewed out: "Symbol's function definition is void: regexp-opt-charset" And the while the cell is *not* spanned, the lower border is shifted to the left, like this: +-----+-----+-----+ | | | | -----+-----+ | | | | +-----+-----+-----+ | | | | +-----+-----+-----+ I get the feeling that this is not a bug, that the error message returned is trying to tell me something I'm doing wrong. Can anybody enlighten me? Thanks, -Martin