From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stayvoid Newsgroups: gmane.emacs.help Subject: Recall of the previous command in an interactive shell. Date: Sun, 13 Nov 2011 23:55:51 +0300 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: dough.gmane.org 1321217763 8643 80.91.229.12 (13 Nov 2011 20:56:03 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sun, 13 Nov 2011 20:56:03 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Nov 13 21:55:59 2011 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RPh5q-0001Ep-9P for geh-help-gnu-emacs@m.gmane.org; Sun, 13 Nov 2011 21:55:58 +0100 Original-Received: from localhost ([::1]:37258 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RPh5p-0003Qa-To for geh-help-gnu-emacs@m.gmane.org; Sun, 13 Nov 2011 15:55:57 -0500 Original-Received: from eggs.gnu.org ([140.186.70.92]:35943) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RPh5l-0003QC-6O for help-gnu-emacs@gnu.org; Sun, 13 Nov 2011 15:55:53 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RPh5k-0006Z8-CA for help-gnu-emacs@gnu.org; Sun, 13 Nov 2011 15:55:53 -0500 Original-Received: from mail-vw0-f41.google.com ([209.85.212.41]:49757) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RPh5k-0006Z4-8c for help-gnu-emacs@gnu.org; Sun, 13 Nov 2011 15:55:52 -0500 Original-Received: by vws16 with SMTP id 16so5448154vws.0 for ; Sun, 13 Nov 2011 12:55:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; bh=cPTVvq2N4WPtIFkhCgMQoJCs7kO6odVNZa/58o1LDS8=; b=h3BpeZxQtUxuqiphErlZQ6ae5i6rYZn9iV4IcAelzt9ax1/sV8KO8Uba9KhHUdMLyH ZVFqPlXsIbNjN6YdfwFzjaxctqa/j/Nm5uGd9MetGtxxEjQPEwmy3B8FmVo5JvsYfg8D lnqKRarLMfxEc4ycuNcaXeGT9eD1ROkLqu7Ac= Original-Received: by 10.52.32.163 with SMTP id k3mr31593311vdi.33.1321217751642; Sun, 13 Nov 2011 12:55:51 -0800 (PST) Original-Received: by 10.52.164.70 with HTTP; Sun, 13 Nov 2011 12:55:51 -0800 (PST) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.212.41 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:82897 Archived-At: Hi there. I've set my function key as control key and control as function. Everything works fine except recall of the last command in an interactive shell. Function (replaced by control) + up arrow is not working. Here is a part from my .emacs file: (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(ns-function-modifier (quote control)) '(ns-control-modifier (quote function)) '(ns-right-alternate-modifier (quote control))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. ) How to set it right? Kind regards.