From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Alexander Shukaev Newsgroups: gmane.emacs.help Subject: Re: How to truly unbind global bindings? Date: Tue, 25 Nov 2014 21:00:19 +0100 Message-ID: References: <98be95d8-086a-4a28-aa34-937c53e2c4de@default> <838uizoz58.fsf@gnu.org> <837fyjoy9n.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1416945684 825 80.91.229.3 (25 Nov 2014 20:01:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 25 Nov 2014 20:01:24 +0000 (UTC) Cc: help-gnu-emacs To: Eli Zaretskii Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Nov 25 21:01:16 2014 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 1XtMIU-0003qv-H2 for geh-help-gnu-emacs@m.gmane.org; Tue, 25 Nov 2014 21:01:14 +0100 Original-Received: from localhost ([::1]:59386 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtMIU-00055o-1D for geh-help-gnu-emacs@m.gmane.org; Tue, 25 Nov 2014 15:01:14 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:37981) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtMHu-00055e-An for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 15:00:46 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XtMHp-0000Uk-OZ for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 15:00:38 -0500 Original-Received: from mail-lb0-x232.google.com ([2a00:1450:4010:c04::232]:52381) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtMHc-0000OE-GH; Tue, 25 Nov 2014 15:00:20 -0500 Original-Received: by mail-lb0-f178.google.com with SMTP id f15so1360165lbj.9 for ; Tue, 25 Nov 2014 12:00:19 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=ybnm6K3xKrBtHy35Xs7OVwhF9cXYtYJbImmWSOc7lrQ=; b=WUvE9i3g+PlsLYLx1LrJVroeb08Gg8vfuBnbHh+wzCmIIRtlF1pbDKb3q2YuhjKeem /xUllQJHxsaGKGHA3od/b7NCBGYJGbqqPTFUqH3gdBBKP30f5+4MBAtCXOA6mW9YONOq aU4jxywRoIfxwr9RZA0t8zpr81PFe90U20Nfb2FPVHukxfkXF5bwoCcFmZtFMfxObI0K UoIokm1VfRhqllMvAABl3i6TI9rcMINU2b8tkbNHyQko5ujPuPGmuRyLivTxGdZRWUsF hsGwQJd/YmLbySBg6vpmUC2k4bM6FxLYX1xP1KOelJMyqukjHF/IaRx64amNrB4Yw90f fl5g== X-Received: by 10.112.135.197 with SMTP id pu5mr29966765lbb.22.1416945619493; Tue, 25 Nov 2014 12:00:19 -0800 (PST) Original-Received: by 10.112.21.136 with HTTP; Tue, 25 Nov 2014 12:00:19 -0800 (PST) In-Reply-To: <837fyjoy9n.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c04::232 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 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:101192 Archived-At: > > Because other systems use Latin-1, which start at 0240 octal, while > MS-DOS uses DOS codepages that have valid characters between 0200 and > 0240. > > Thank you. How can I replicate MS-DOS condition in Emacs Lisp code? Something like (unless (eq system-type 'windows-nt) ...) ? Which symbol denotes MS-DOS? `ms-dos'?