From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard H Lee Newsgroups: gmane.emacs.help Subject: Extended ascii characters in emacs lisp Date: Fri, 20 Apr 2012 22:37:02 +0100 Message-ID: <4F91D6FE.50406@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1334957834 7875 80.91.229.3 (20 Apr 2012 21:37:14 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 20 Apr 2012 21:37:14 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Apr 20 23:37:13 2012 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SLLVx-0005Q6-6Z for geh-help-gnu-emacs@m.gmane.org; Fri, 20 Apr 2012 23:37:13 +0200 Original-Received: from localhost ([::1]:40479 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SLLVw-00086n-Jl for geh-help-gnu-emacs@m.gmane.org; Fri, 20 Apr 2012 17:37:12 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:47162) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SLLVr-00086i-QJ for help-gnu-emacs@gnu.org; Fri, 20 Apr 2012 17:37:08 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SLLVq-0002Qj-50 for help-gnu-emacs@gnu.org; Fri, 20 Apr 2012 17:37:07 -0400 Original-Received: from mail-we0-f169.google.com ([74.125.82.169]:54368) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SLLVp-0002Qf-SA for help-gnu-emacs@gnu.org; Fri, 20 Apr 2012 17:37:06 -0400 Original-Received: by werj55 with SMTP id j55so8226303wer.0 for ; Fri, 20 Apr 2012 14:37:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=vWGPcP6fVdbB33QMkxnSOGG6euFkk7+RkEOhvMUCiz8=; b=pbB4f/2yG+MFUBuh9DXfYcmvdKjKMD8fGMu/5b0vvRl5sgd/IL8k1Qkjq1LpUnLcdz K5i7jbILiaXaNNtn9vf9EQLJnn/JlHHJbRmM5yQHC7/hdOvLqFRTVlvL+fryRtIGRUsc NoLVLL+UuFdCHN6OBfphvHLs9XzBYd1r8lxzg7e8iB6dxMjfvJUO0nJk5wMyDEz4a1eh gGCCth4GsgI3sBZgNlwyK6ofVbVHmkne/kc44BXWGpuzBNBdEiaRecxlqIhxbqXR+OI0 iliZ3RetWZ4k/+kCXIDv1BefajyI1XrRVbzWDnfxDqi6NNN2Gaf2sFx/W1ZSXdTAJXFH JTXA== Original-Received: by 10.180.77.4 with SMTP id o4mr1112028wiw.17.1334957823893; Fri, 20 Apr 2012 14:37:03 -0700 (PDT) Original-Received: from [192.168.1.187] (87-194-63-158.bethere.co.uk. [87.194.63.158]) by mx.google.com with ESMTPS id k6sm445952wie.9.2012.04.20.14.37.02 (version=SSLv3 cipher=OTHER); Fri, 20 Apr 2012 14:37:03 -0700 (PDT) User-Agent: Mozilla/5.0 (X11; Linux i686; rv:11.0) Gecko/20120329 Thunderbird/11.0.1 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 74.125.82.169 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:84534 Archived-At: Hi (again), I'm using fill-column-indicator.el to set a column margin at column 80 in emacs. Currently it uses the pipe "|" symbol as the margin character. I would like to change it one of the extended ascii characters, e.g. the solid block / long vertical pipe. I can set it to standard ascii characters using: (setq fci-rule-character ?\101) e.g. this will set the character to "A". But if I go over 127 into extended-ascii, I get: Invalid read syntax: ? What is the emacs lisp syntax for extended ascii characters? Richard