From mboxrd@z Thu Jan 1 00:00:00 1970 From: myglc2 Subject: Is this the way geiser works for others? Date: Wed, 12 Apr 2017 00:21:00 -0400 Message-ID: <8660ia6ytv.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41707) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cy9mF-0001wj-Jd for help-guix@gnu.org; Wed, 12 Apr 2017 00:21:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cy9mA-00070S-LB for help-guix@gnu.org; Wed, 12 Apr 2017 00:21:07 -0400 Received: from mail-qt0-x236.google.com ([2607:f8b0:400d:c0d::236]:34905) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cy9mA-00070J-Gi for help-guix@gnu.org; Wed, 12 Apr 2017 00:21:02 -0400 Received: by mail-qt0-x236.google.com with SMTP id n46so13593499qta.2 for ; Tue, 11 Apr 2017 21:21:02 -0700 (PDT) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Alex Kost , help-guix@gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit I am starting to wonder if something is horribly wrong. Why? Well, if I do 'M-x guix-edit emacs.scm', do 'M-x run-geiser', select 'define-module', and press M-. I see ... geiser-edit-symbol-at-point: Couldn’t find edit location for ’define-module’ If I select 'emacs-build-system' and press M-. I see ... geiser-edit-symbol-at-point: Couldn’t find edit location for ’emacs-build-system’ Is this how geiser works for others? TIA - George I'm running GuixSD and emacs-guix built from recent git pulls. GNU Guix 0.12.0 Emacs-Guix 0.3 emacs config: --=-=-= Content-Type: application/emacs-lisp Content-Disposition: attachment; filename=guix.el Content-Transfer-Encoding: quoted-printable ;; .emacs.d/guix.el ;; guix git checkout (with-eval-after-load 'geiser-guile (add-to-list 'geiser-guile-load-path "~/src/guix")) ;; emacs-guix from git checkout (add-to-list 'load-path "~/.emacs.d/lisp/guix.el/elisp") (require 'guix-autoloads nil t) ;; enable development mode (C-c . _) in .scm buffers (add-hook 'scheme-mode-hook 'guix-devel-mode) ;; info from packages built from git (with-eval-after-load 'info (info-initialize) (setq Info-directory-list (append '("~/.emacs.d/lisp/guix.el/doc" "~/src/guix/doc") Info-directory-list '("/usr/local/share/info")))) ;; so geiser uses guile for any .scm file (setq geiser-active-implementations '(guile)) --=-=-=--