From: Stefano Zacchiroli <zack@debian.org>
To: Romain Francoise <rfrancoise@debian.org>
Cc: Dan Nicolaescu <dann@ics.uci.edu>, 1078@emacsbugs.donarmstrong.com
Subject: bug#1078: 23.0.60; font faces setting ignored by emacsclient run against --daemon
Date: Thu, 9 Oct 2008 11:02:48 +0200 [thread overview]
Message-ID: <20081009090248.GA8771@usha.takhisis.invalid> (raw)
In-Reply-To: <87prmcffc0.fsf@elegiac.orebokech.com>
[-- Attachment #1: Type: text/plain, Size: 809 bytes --]
On Tue, Oct 07, 2008 at 08:08:31PM +0200, Romain Francoise wrote:
> I can't reproduce it here, neither with emacs-snapshot 20081005-1
> nor with CVS HEAD as of a few moments ago.
>
> Zack, do you have any other settings in your init files which could
> be relevant?
My full Emacs configuration is attached (it is not that big actually),
have a look and let me know if you see anything weird I should comment
out before trying again.
All files other than ~/.emacs itself are stored in my ~/.emacs.d/ .
Cheers
--
Stefano Zacchiroli -*- PhD in Computer Science \ PostDoc @ Univ. Paris 7
zack@{upsilon.cc,pps.jussieu.fr,debian.org} -<>- http://upsilon.cc/zack/
I'm still an SGML person,this newfangled /\ All one has to do is hit the
XML stuff is so ... simplistic -- Manoj \/ right keys at the right time
[-- Attachment #2: .emacs --]
[-- Type: text/plain, Size: 1142 bytes --]
(setq viper-mode t) ;; I'm an Emacs rebel!
(require 'viper)
(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.
'(default ((t (:inherit nil :stipple nil :background "white" :foreground "black" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 90 :width normal :foundry "monospace" :family "monospace")))))
(column-number-mode 1) ;; UI settings
(scroll-bar-mode nil)
(tool-bar-mode nil)
(show-paren-mode t)
;; (mouse-avoidance-mode 'banish)
(iswitchb-mode 1)
(setq compilation-scroll-output t)
(setq backup-inhibited t) ;; misc settings
(server-start) ;; Emacs server
(setq add-log-mailing-address ;; about me
"zack@upsilon.cc")
(add-to-list 'load-path ;; local extensions
(expand-file-name "~/.emacs.d"))
(load "ispell-change-dictionary-hook")
(load "zack-hooks")
(load "zack-keys")
(load "zack-disabled-cmds")
(load "zack-automodes")
(load "zack-autoload")
[-- Attachment #3: ispell-change-dictionary-hook.el --]
[-- Type: text/plain, Size: 342 bytes --]
;; Rationale: unfortunately there is no hook to run stuff after
;; (ispell-change-dictionary). See
;; http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=1110
(defadvice ispell-change-dictionary (after flyspell-buffer
(dict &optional arg))
"(Re-) flyspell the current buffer after changing dictionary"
(flyspell-buffer))
[-- Attachment #4: zack-autoload.el --]
[-- Type: text/plain, Size: 36 bytes --]
;; (autoload 'rnc-mode "rnc-mode")
[-- Attachment #5: zack-automodes.el --]
[-- Type: text/plain, Size: 173 bytes --]
;; enable modes on the bases of filename regexps
(add-to-list 'auto-mode-alist '("/tmp/mutt-.*" . mail-mode))
(add-to-list 'auto-mode-alist '(".*\.mdwn" . markdown-mode))
[-- Attachment #6: zack-disabled-cmds.el --]
[-- Type: text/plain, Size: 103 bytes --]
;; enabling disabled commands
(put 'upcase-region 'disabled nil)
(put 'downcase-region 'disabled nil)
[-- Attachment #7: zack-hooks.el --]
[-- Type: text/plain, Size: 206 bytes --]
;; hooks collection
(add-hook 'text-mode-hook 'auto-fill-mode)
(add-hook 'mail-mode-hook 'turn-on-flyspell)
(add-hook 'latex-mode-hook 'turn-on-flyspell)
;; (add-hook 'flyspell-mode-hook 'flyspell-buffer)
[-- Attachment #8: zack-keys.el --]
[-- Type: text/plain, Size: 361 bytes --]
(global-set-key (kbd "M-/") 'hippie-expand)
;; local keybindings should start with C-c and be a letter (uppercase
;; or lowercase), in order to match best-practices
(global-set-key (kbd "C-c c") 'comment-region)
(global-set-key (kbd "C-c d") 'ispell-change-dictionary)
(global-set-key (kbd "C-c k") 'compile)
(global-set-key (kbd "C-c u") 'uncomment-region)
next prev parent reply other threads:[~2008-10-09 9:02 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20081014221139.GA20609@usha.takhisis.invalid>
2008-10-03 14:53 ` bug#1078: 23.0.60; font faces setting ignored by emacsclient run against --daemon Stefano Zacchiroli
[not found] ` <handler.1078.B.122306088011051.ack@emacsbugs.donarmstrong.com>
2008-10-03 21:10 ` bug#1078: Acknowledgement (23.0.60; font faces setting ignored by emacsclient run against --daemon) Stefano Zacchiroli
2008-10-04 5:45 ` bug#1078: 23.0.60; font faces setting ignored by emacsclient run against --daemon Dan Nicolaescu
2008-10-04 8:44 ` Stefano Zacchiroli
2008-10-04 10:26 ` Dan Nicolaescu
2008-10-04 16:34 ` Stefano Zacchiroli
2008-10-06 9:22 ` Stefano Zacchiroli
2008-10-06 10:13 ` Dan Nicolaescu
2008-10-07 18:08 ` Romain Francoise
2008-10-09 9:02 ` Stefano Zacchiroli [this message]
2008-10-13 13:30 ` Dan Nicolaescu
2008-10-13 20:34 ` Stefano Zacchiroli
2008-10-13 20:45 ` Processed (with 5 errors): " Emacs bug Tracking System
2008-10-14 6:22 ` Dan Nicolaescu
2008-10-06 20:32 ` Dan Nicolaescu
2008-10-07 8:14 ` Stefano Zacchiroli
2008-10-07 14:16 ` Dan Nicolaescu
2008-10-07 18:10 ` Romain Francoise
2008-10-14 22:20 ` bug#1078: marked as forwarded (23.0.60; font faces setting ignored by emacsclient vs --daemon, when Viper mode is loaded) Emacs bug Tracking System
[not found] ` <handler.1078.C.123239464432766.notifdonectrl.0@emacsbugs.donarmstrong.com>
2009-01-19 22:15 ` bug#1078: acknowledged by developer (close 1078) Stefano Zacchiroli
2009-01-19 22:25 ` Processed: Re: bug#1078 " Emacs bug Tracking System
2009-08-13 16:10 ` bug#1078: marked as done (23.0.60; font faces setting ignored by emacsclient vs --daemon, when Viper mode is loaded) Emacs bug Tracking System
[not found] ` <handler.1078.D1078.125017944519805.notifdone@emacsbugs.donarmstrong.com>
2009-08-17 8:25 ` bug#1078: closed by Chong Yidong <cyd@stupidchicken.com> (Re: 23.0.60; font faces setting ignored by emacsclient run against --daemon) Stefano Zacchiroli
[not found] ` <20081014211221.6b8f74d1@kiferserv>
2008-10-18 12:42 ` bug#1078: 23.0.60; font faces setting ignored by emacsclient run against --daemon Stefano Zacchiroli
[not found] <87hc3vf524.fsf@cyd.mit.edu>
2009-01-19 20:00 ` Processed: close 1078 Emacs bug Tracking System
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20081009090248.GA8771@usha.takhisis.invalid \
--to=zack@debian.org \
--cc=1078@emacsbugs.donarmstrong.com \
--cc=dann@ics.uci.edu \
--cc=rfrancoise@debian.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).