-
Notifications
You must be signed in to change notification settings - Fork 0
/
emacs-span.el
560 lines (540 loc) · 50.8 KB
/
emacs-span.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
;;; emacs-span -- Pascal J. Bourguignon's emacs startup files.
;;; -*- mode:emacs-lisp;lexical-binding:t;coding:utf-8 -*-
;;; Commentary:
;;; Code:
(message "Hi SPAN!")
(defun mice ()
(split-string
(string-trim
(shell-command-to-string "xinput list --name-only|grep -i mouse"))
"\n"))
(defun touchpads ()
(split-string
(string-trim
(shell-command-to-string "xinput list --name-only|grep -i -e 'touchpad\\|DLL07A0:01\\|VirtualBox USB Tablet'"))
"\n"))
(defun turn-off-trackpad (&optional frame)
(interactive)
(dolist (pad (touchpads))
(shell-command (format "xinput disable %S" pad))))
(defun turn-on-trackpad (&optional frame)
(interactive)
(dolist (pad (touchpads))
(shell-command (format "xinput enable %S" pad))))
;; (list focus-in-hook focus-out-hook)
(add-hook 'focus-in-hook 'turn-off-trackpad)
(add-hook 'focus-out-hook 'turn-on-trackpad)
(add-hook 'delete-frame-functions 'turn-on-trackpad)
(load "~/rc/emacs-pjb.el")
(set-frame-font "terminus-13")
(ignore-errors (progn (setf *pjb-current-font-index* 1) (set-current-font)))
(cond ((string-match "^vm-" (hostname)) (set-palette pal-dark-amber)))
(setf *pjb-intervention-firm* '((minint)))
(require 'freerdp-c-style)
(require 'asn1-mode)
(add-to-list 'auto-mode-alist '("\.asn1$" . asn1-mode))
(setf browse-url-browser-function 'browse-url-firefox2)
(global-set-key (kbd "s-s") 'git-search-symbol-at-point)
(global-set-key (kbd "C-s-s") 'git-search)
(global-set-key (kbd "M-s-s") 'git-search-region)
(custom-set-variables
'(ad-redefinition-action (quote accept))
'(auto-compression-mode t nil (jka-compr))
'(auto-image-file-mode t)
'(auto-save-interval 2500)
'(auto-save-timeout 60)
'(backup-by-copying t)
'(backup-by-copying-when-linked t)
'(backup-by-copying-when-mismatch t)
'(backup-by-copying-when-privileged-mismatch 1000)
'(backup-directory-alist (quote (("." . "~/.backups"))))
'(backup-file-version-format "%03d")
'(bcc-user-mail-address "[email protected]" t)
'(blink-matching-paren t)
'(boxquote-bottom-corner "+")
'(boxquote-top-and-tail "----------------------------------------------------------------------------")
'(boxquote-top-corner "+")
'(browse-url-browser-function (quote w3m-browse-url))
'(browse-url-new-window-flag nil)
'(c-argdecl-indent 4 t)
'(c-auto-newline nil t)
'(c-backslash-column (quote set-from-style))
'(c-backslash-max-column (quote set-from-style))
'(c-basic-offset (quote set-from-style))
'(c-block-comment-prefix (quote set-from-style))
'(c-brace-imaginary-offset 0 t)
'(c-brace-offset 0 t)
'(c-cleanup-list (quote set-from-style))
'(c-comment-continuation-stars "" t)
'(c-comment-only-line-offset (quote set-from-style))
'(c-comment-prefix-regexp (quote set-from-style))
'(c-continued-brace-offset 0 t)
'(c-continued-statement-offset 4 t)
'(c-default-style "pjb")
'(c-doc-comment-style (quote set-from-style))
'(c-echo-syntactic-information-p t)
'(c-hanging-braces-alist (quote set-from-style))
'(c-hanging-colons-alist (quote set-from-style))
'(c-hanging-comment-ender-p nil t)
'(c-hanging-comment-starter-p nil t)
'(c-hanging-semi&comma-criteria (quote set-from-style))
'(c-indent-comment-alist (quote set-from-style))
'(c-indent-comments-syntactically-p (quote set-from-style))
'(c-indent-level 4 t)
'(c-label-minimum-indentation 2)
'(c-label-offset -4 t)
'(c-macro-shrink-window-flag t)
'(c-offsets-alist (quote nil))
'(c-special-indent-hook (quote nil))
'(c-tab-always-indent t)
'(calendar-christian-all-holidays-flag t)
'(calendar-date-display-form (quote ((if dayname (format "%4s-%2s-%2s %-9s %2s %-9s" year month day monthname day dayname) (format "%4s-%2s-%2s %-9s %2s %-9s" year month day monthname day "")))))
'(calendar-date-style (quote iso))
'(calendar-hebrew-all-holidays-flag nil)
'(calendar-holidays (quote ((holiday-fixed 1 1 "New Year's Day") (holiday-fixed 2 2 "Groundhog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fools' Day") (holiday-float 5 0 2 "Mother's Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 10 28 "Frédérique Saubot") (holiday-fixed 10 11 "Henri Bourguignon") (holiday-fixed 3 23 "Françoise Keller") (holiday-fixed 11 25 "Joëlle Bourguignon") (holiday-fixed 12 16 "Agathe De Robert") (holiday-fixed 5 12 "Guillaume De Robert") (holiday-fixed 1 4 "Isabelle Saubot") (holiday-fixed 10 23 "Marc Moini") (holiday-fixed 2 10 "Anne-Marie Castel") (holiday-fixed 6 28 "Jean-François Gaillon") (holiday-fixed 6 28 "Sylvie Gaillon") (holiday-fixed 1 25 "Raoul Fruhauf") (holiday-fixed 3 15 "Pascal Bourguignon") (holiday-fixed 4 12 "Jalal Adamsah") (holiday-fixed 1 14 "Bernard Bourguignon") (holiday-fixed 12 12 "Nicoleta Reinald") (holiday-fixed 7 3 "Alain Bourguignon") (holiday-fixed 4 15 "André Reinald") (holiday-fixed 12 13 "Michelle Keller") (holiday-fixed 5 27 "Grégoire Saubot") (holiday-fixed 3 27 "Olivia De Robert") (holiday-fixed 11 18 "Vincent De Robert") (holiday-fixed 7 23 "Gabriel De Robert") (holiday-fixed 3 18 "Claire De Robert") (holiday-fixed 10 26 "Maxime De Robert") (holiday-fixed 3 26 "Edward-Amadeus Reinald") (holiday-fixed 3 4 "Louise Akiko Poullain") (holiday-fixed 8 26 "Iris-Alea Reinald") (holiday-fixed 9 4 "Baptiste Rouit") (holiday-fixed 2 22 "Camille Saubot") (holiday-fixed 8 2 "Clémence Saubot-Fiant") (holiday-fixed 5 29 "François Saubot") (holiday-fixed 1 2 "Henry Saubot") (holiday-fixed 10 28 "Lucia (fille de Camille)") (holiday-fixed 11 26 "Marine Rouit") (holiday-fixed 3 13 "Mathias Fiant") (holiday-fixed 4 8 "Mathilde Rouit") (holiday-fixed 2 2 "Olivier Scmidt Chevalier") (holiday-fixed 8 10 "Kiteri (fille de Camille)") (holiday-fixed 9 10 "Remy Rouit") (holiday-fixed 8 7 "Valerie Saubot-Rouit") (holiday-fixed 6 9 "Santa Murcia") (holiday-fixed 7 14 "Fête Nationale France") (holiday-easter-etc) (holiday-fixed 12 25 "Christmas") (if calendar-christian-all-holidays-flag (append (holiday-fixed 1 6 "Epiphany") (holiday-julian 12 25 "Christmas (Julian calendar)") (holiday-greek-orthodox-easter) (holiday-fixed 8 15 "Assumption") (holiday-advent 0 "Advent"))) (solar-equinoxes-solstices) (holiday-sexp calendar-daylight-savings-starts (format "Daylight Saving Time Begins %s" (solar-time-string (/ calendar-daylight-savings-starts-time . #1=((float 60))) calendar-standard-time-zone-name))) (holiday-sexp calendar-daylight-savings-ends (format "Daylight Saving Time Ends %s" (solar-time-string (/ calendar-daylight-savings-ends-time . #1#) calendar-daylight-time-zone-name))))))
'(calendar-mark-holidays-flag t)
'(calendar-time-display-form (quote (24-hours ":" minutes (if time-zone " (") time-zone (if time-zone ")"))) t)
'(calendar-view-holidays-initially-flag t)
'(calendar-week-start-day 1)
'(canlock-password "87f2de14edf31a9ebb2c5b5619c818a49937a47b")
'(case-fold-search t)
'(chess-default-engine (quote (chess-gnuchess chess-crafty chess-phalanx)) t)
'(chess-images-directory "/usr/share/pixmaps/chess/xboard" t)
'(chess-sound-directory "/usr/share/sounds/chess" t)
'(comint-dynamic-complete-functions nil t)
'(comint-process-echoes nil)
'(comment-empty-lines t)
'(comment-force-also-empty-lines t)
'(current-language-environment "UTF-8")
'(default-input-method nil)
'(default-major-mode (quote text-mode) t)
'(delete-old-versions t)
'(delete-selection-mode nil)
'(dired-kept-versions 4)
'(display-time-24hr-format t)
'(display-time-day-and-date t)
'(display-time-mode t)
'(ecb-auto-activate nil)
'(ecb-cedet-url "http://sourceforge.net/project/showfiles.php?group_id=17484")
'(ecb-options-version "2.32")
'(emms-info-functions (quote (emms-info-id3v2 emms-info-ogginfo emms-info-mp3info)))
'(emms-info-mp3info-coding-system (quote iso-8859-1))
'(emms-lyrics-display-on-minibuffer t)
'(emms-player-started-hook (quote (emms-show)))
'(emms-show-format "NP %s")
'(emms-source-file-default-directory "/movies/sound/music/")
'(emms-source-playlist-formats (quote (native pls m3u)))
'(enable-recursive-minibuffers t)
'(erc-auto-query (quote window))
'(erc-autojoin-channels-alist (quote (("freenode.net" "#macosx" "#lisp" "#clnoobs" "#ccl" "#ecl" "#lispcafe" "##lisp" "#scheme" "#hn" "#swift-lang" "#swift-linux" "#MacOSX") ("irc.oftc.net" "#uml"))))
'(erc-autojoin-channels-alist-full (quote (("freenode.net" "#lisp" "#clnoobs" "#ccl" "#ecl" "#lispcafe" "##lisp" "#scheme" "#hn" "#gentoo-lisp" "#swift-lang" "#swift-linux" "##objc" "#iphonedev-discuss" "#iCommunity" "#CocoaDev" "#MacOSX" "#macdev" "#iphonedev" "#iOSdev" "##apple" "##mac" "##iphone" "#iphonedev-chat" "#macports" "#macosforge" "##computerscience") ("irc.oftc.net" "#uml"))))
'(erc-away-timestamp-format "<%H:%M:%S>")
'(erc-beep-match-types (quote (current-nick keyword pal)))
'(erc-echo-notices-in-current-buffer t)
'(erc-echo-timestamps nil)
'(erc-email-userid t)
'(erc-encoding-coding-alist (quote (("#emacsfr" . iso-8859-15) ("#scheme-es" . iso-8859-15))))
'(erc-fill-column 90)
'(erc-fill-function (quote erc-fill-variable))
'(erc-fill-mode -1)
'(erc-fill-prefix "\"\"")
'(erc-fill-static-center 0)
'(erc-fill-variable-maximum-indentation 0)
'(erc-hide-list (quote nil))
'(erc-ignore-list (quote ("ad37e918" "173.55.233.24" "Abby26" "^snv1?!~Adium@")))
'(erc-ignore-per-channel-alist (quote (("#lisp" . "^\\(?:A\\(?:aliyah\\|b\\(?:b\\(?:ey\\|i\\(?:e\\|gail\\)\\|y\\)\\|igail\\)\\|d\\(?:dison\\|ri\\(?:an\\(?:n?a\\)?\\|enne\\)\\)\\|gath[ae]\\|i\\(?:leen\\|mee\\|sha\\)\\|ja\\|l\\(?:a\\(?:[iny]?na\\)\\|e\\(?:ah\\|cia\\|jandra\\|na\\|s\\(?:\\(?:h\\|sandr\\)a\\)\\|x\\(?:a\\(?:ndr\\(?:[ei]?a\\)\\)?\\|i[as]\\|us\\)?\\)\\|i\\(?:c\\(?:e\\|ia\\)\\|na\\|s\\(?:a\\|ha\\|on\\|sa\\)\\|yah\\)?\\|l\\(?:i\\(?:e\\|son\\)\\|ys\\(?:on\\|sa\\)\\)\\|ma\\|ondra\\|y\\(?:cia\\|s\\(?:a\\|ha\\|ia\\|on\\|sa\\)\\)\\)\\|m\\(?:an\\(?:da\\|i\\)\\|ber\\|elia\\|y\\)\\|n\\(?:a\\(?:bel\\|is\\|stasia\\)\\|drea\\|g\\(?:el\\(?:a\\|i\\(?:ca\\|na\\|que\\)\\)?\\|ie\\)\\|i\\(?:\\(?:ss\\|[kt]\\)a\\)\\|jelica\\|n\\(?:amarie\\|ette\\|i\\(?:e\\|ka\\)\\|marie\\|[ae]\\)\\|to\\(?:inette\\|nia\\)\\|[an]\\)\\|pril\\|r\\(?:aceli\\|i\\(?:an\\(?:n?a\\)\\|el\\(?:le\\)?\\)\\|lene\\)\\|s\\(?:h\\(?:a\\(?:nti\\)?\\|ely\\|l\\(?:e\\(?:igh\\|[ey]\\)\\|ie\\|ynn?\\|[iy]\\)\\|ton\\)\\|ia\\|pen\\|trid\\)\\|thena\\|u\\(?:bre[ey]\\|dr\\(?:a\\|ey\\)\\|rora\\|tumn\\)\\|v\\(?:a\\|ery\\)\\|y\\(?:\\(?:ann?\\|l\\)a\\)\\)\\|B\\(?:a\\(?:by\\|ile[ey]\\|rbara\\|ylee\\)\\|e\\(?:atri\\(?:ce\\|z\\)\\|linda\\|r\\(?:\\(?:enic\\|nadett\\)e\\)\\|t\\(?:h\\(?:any\\)?\\|[st]y\\)\\|verly\\)\\|i\\(?:anca\\|llie\\)\\|la\\(?:ir\\|nca\\)\\|o\\(?:bbie?\\|nnie\\)\\|r\\(?:and\\(?:ie\\|[iy]\\)\\|e\\(?:a\\(?:n\\(?:n[ae]\\|[an]\\)\\)?\\|\\(?:n[dn]\\|onn\\)a\\)\\|i\\(?:a\\(?:n\\(?:a\\|n[ae]\\)\\)?\\|dget\\(?:te\\)?\\|elle\\|t\\(?:any\\|n\\(?:ey\\|i\\)\\|t\\(?:an\\(?:ie\\|[iy]\\)\\|n\\(?:ey\\|i\\)\\)\\)\\)\\|ook\\(?:e\\|lyn\\)?\\|yan\\(?:n?a\\)\\)\\)\\|C\\(?:a\\(?:itl\\(?:[iy]n\\)\\|llie\\|m\\(?:eron\\|ille\\)\\|nd\\(?:[ai]ce\\)\\|r\\(?:a\\|i\\(?:\\(?:n\\|ss\\)a\\)\\|l\\(?:e[ey]\\|ie\\|[aiy]\\)\\|men\\|ol\\(?:in[ae]\\|yn\\)?\\|rie\\|son\\)\\|s\\(?:andra\\|ey\\|s\\(?:andra\\|i\\(?:dy\\|e\\)\\)\\)\\|t\\(?:alina\\|herine\\)\\|yla\\)\\|e\\(?:c\\(?:[ei]lia\\)\\|l\\(?:este\\|i\\(?:a\\|n[ae]\\)\\)\\)\\|h\\(?:a\\(?:n\\(?:dler\\|\\(?:e\\|t[ae]\\)l\\)\\|r\\(?:ity\\|l\\(?:\\(?:en\\|ott\\)e\\)\\)\\|sity\\|ya\\)\\|e\\(?:ls\\(?:e[ay]\\|ie?\\)\\|ryl\\|y\\(?:[ae]nne\\)\\)\\|ina\\|loe\\|rist\\(?:en\\|i\\(?:ana?\\|n[ae]\\|[en]\\)\\|[ay]\\)\\)\\|i\\(?:ara\\|er\\(?:r?a\\)\\|ndy\\)\\|la\\(?:ire\\|r\\(?:issa\\|[ae]\\)\\|udia\\)\\|o\\(?:lleen\\|n\\(?:\\(?:ni\\|stanc\\)e\\)\\|r\\(?:ey\\|in\\(?:a\\|ne\\)\\|tney\\|[ai]\\)\\|urtney\\)\\|r\\(?:ist\\(?:al\\|ina\\)\\|ystal\\)\\|ynthia\\)\\|D\\(?:a\\(?:isy\\|kota\\|l\\(?:ia\\|las\\)\\|maris\\|n\\(?:a\\|i\\(?:ca\\|el\\(?:a\\|l[ae]\\)\\)\\)\\|phne\\|r\\(?:a\\|by\\|cy\\|ian\\|lene\\)\\|wn\\|yna\\)\\|e\\(?:an\\(?:n?a\\)\\|b\\(?:bie\\|orah\\|ra\\)\\|ja\\|laney\\|mi\\|nise\\|s\\(?:ir\\(?:[ae]e\\)\\|tin\\(?:e[ey]\\|[iy]\\)\\)\\|v\\(?:[aioy]n\\)\\)\\|i\\(?:a\\(?:mond\\|n\\(?:na\\|[ae]\\)\\)\\|na\\)\\|o\\(?:m\\(?:\\(?:ini?\\|oni\\)que\\)\\|nna\\|r\\(?:is\\|othy\\)\\)\\|rew\\|ulce\\)\\|E\\(?:bon[iy]\\|d\\(?:en\\|ith\\)\\|ileen\\|l\\(?:ain[ae]\\|e\\(?:anor\\|na\\)\\|i\\(?:ana\\|s\\(?:abeth\\|[hs]a\\|[ae]\\)\\|za\\(?:beth\\)?\\)\\|l\\(?:a\\|en\\|ie\\)\\|sa\\|ys\\(?:e\\|sa\\)\\)\\|m\\(?:erald\\|il\\(?:ee\\|i[ae]\\|y\\)\\|ma\\)\\|ri\\(?:c\\(?:k?a\\)\\|ka\\|n\\)\\|s\\(?:meralda\\|sence\\|t\\(?:efania\\|her\\)\\)\\|unice\\|v\\(?:a\\|elyn\\)\\)\\|F\\(?:a\\(?:biola\\|ith\\|tima\\)\\|elicia\\|iona\\|ranc\\(?:es\\(?:ca\\)?\\|hes\\(?:[ck]a\\)\\)\\)\\|G\\(?:abriel\\(?:a\\|l[ae]\\)?\\|e\\(?:ne\\(?:sis\\|vieve\\)\\|orgi\\(?:n?a\\)\\)\\|i\\(?:anna\\|llian\\|na\\|ovanna\\|selle\\)\\|l\\(?:adys\\|oria\\)\\|r\\(?:ac\\(?:e\\|iela\\)\\|etchen\\|iselda\\)\\|uadalupe\\|wendolyn\\)\\|H\\(?:a\\(?:ile[ey]\\|l\\(?:e\\(?:igh\\|y\\)\\|ie?\\|l\\(?:i?e\\)\\)\\|nnah?\\|rley\\|yl\\(?:e[ey]\\|ie\\)\\|zel\\)\\|e\\(?:a\\(?:ther\\|ven\\)\\|idi\\|lena?\\)\\|il\\(?:l?ary\\)\\|o\\(?:ll\\(?:ie\\|y\\)\\|pe\\)\\|unter\\)\\|I\\(?:esha\\|liana\\|mani\\|n\\(?:dia\\|fant\\|grid\\)\\|r\\(?:ene\\|is\\|ma\\)\\|sa\\(?:bel\\(?:l[ae]\\)?\\|mar\\)\\|tzel\\|v\\(?:ette\\|y\\)\\)\\|J\\(?:a\\(?:c\\(?:k\\(?:ie\\|lyn\\)\\|lyn\\|quel\\(?:ine\\|yn\\)\\)\\|d[ae]\\|im\\(?:i?e\\)\\|lisa\\|mi\\(?:e\\|la\\)?\\|n\\(?:a[ey]\\|e\\(?:lle\\|ssa\\|t\\(?:te\\)?\\)\\|i\\(?:[cn]?e\\)\\|[ae]\\)\\|queline\\|smine?\\|y\\(?:la\\|me\\)\\|zm\\(?:ine?\\|yn\\)\\)\\|e\\(?:an\\(?:ette\\)?\\|n\\(?:a\\|ifer\\|n\\(?:i\\(?:e\\|fer\\)\\|[ay]\\)\\)\\|rrica\\|ss\\(?:enia\\|i\\(?:ca\\|e\\|ka\\)\\|[ei]\\)\\)\\|ill\\(?:ian\\)?\\|o\\(?:an\\(?:n[ae]\\|[an]\\)?\\|celyn\\|die?\\|elle\\|hanna\\|lene\\|rd\\(?:[ay]n\\)\\|s\\(?:e\\(?:lyn\\|phine\\)\\|ie\\)\\|y\\(?:ce\\)?\\)\\|u\\(?:an\\(?:\\(?:it\\)?a\\)\\|d\\(?:ith\\|y\\)\\|li\\(?:an\\(?:a\\|n[ae]\\)\\|et\\|ssa\\|[ae]\\)\\|sti\\(?:ce\\|n[ae]\\)\\)\\)\\|K\\(?:a\\(?:c\\(?:ey\\|ie?\\)\\|ela\\|i\\(?:l\\(?:a\\|e[ey]\\|yn\\)\\|tl\\(?:\\(?:yn\\|[iy]\\)n\\)\\)\\|l\\(?:e\\(?:igh\\|y\\)\\|ie\\|lie\\|yn\\|[ai]\\)\\|r\\(?:en\\|i\\(?:\\(?:n\\|ss\\)a\\)\\|l\\(?:e[ey]\\|ie\\|[aiy]\\)\\|[ai]\\)\\|s\\(?:andra\\|ey\\|s\\(?:andra\\|i\\(?:dy\\|e\\)\\)\\)\\|t\\(?:arina\\|e\\(?:l\\(?:\\(?:yn\\|[iy]\\)n\\)\\|rina\\)\\|h\\(?:arine\\|er\\(?:ine\\|yn\\)\\|leen\\|r\\(?:ine\\|yn\\)\\|y\\)\\|ie\\|l\\(?:\\(?:yn\\|[iy]\\)n\\)\\|rina\\|[ey]\\)\\|y\\(?:cee\\|l\\(?:e\\(?:igh\\|[ey]\\)\\|i[en]\\|ynn?\\|[ai]\\)\\)\\)\\|e\\(?:ely\\|i\\(?:\\(?:l\\|shl?\\)a\\)\\|l\\(?:cie\\|l\\(?:ey\\|ie\\|[iy]\\)\\|s\\(?:e[ay]\\|ie?\\)\\)\\|n\\(?:d\\(?:all?\\|ra\\)\\|ia\\|nedy\\|ya\\)\\|r\\(?:i\\|r[iy]\\)\\)\\|hadijah\\|i\\(?:a\\(?:\\(?:nn\\|[nr]\\)a\\)?\\|er\\(?:a\\|ra\\|sten\\)\\|ley\\|mberl\\(?:e[ey]\\|y\\)\\|r\\(?:a\\|st\\(?:en\\|i[en]\\)\\)\\)\\|o\\(?:r\\(?:i\\|tney\\)\\|urtney\\)\\|r\\(?:ist\\(?:al\\|en\\|i\\(?:an\\|n[ae]\\|[en]\\)\\|yn\\|[aiy]\\)\\|ystal?\\)\\|y\\(?:l\\(?:a\\|[ei]e\\)\\|ra\\)\\)\\|L\\(?:a\\(?:c\\(?:ey\\|ie\\|y\\)\\|keisha\\|na\\|r\\(?:\\(?:iss\\)?a\\)\\|t\\(?:\\(?:ash\\|ish\\|oy\\)a\\)\\|ur\\(?:a\\|e[ln]\\|ie\\|yn\\)\\|yla\\)\\|e\\(?:a\\(?:h\\|n\\(?:dra\\|n[ae]?\\)\\)?\\|eann\\|i\\(?:gh\\|la\\)\\|na\\|sl\\(?:ey\\|ie\\|y\\)\\|ticia\\|x\\(?:ie?\\|us\\)\\)\\|i\\(?:ana\\|dia\\|l\\(?:iana\\|lian\\|y\\)\\|nd\\(?:a\\|s\\(?:[ae]y\\)\\)\\|sa\\|z\\(?:a\\|beth\\|et\\(?:h\\|te\\)\\)\\)\\|o\\(?:gan\\|r\\(?:ena?\\|i\\|raine\\)\\|urdes\\)\\|u\\(?:c\\(?:ero\\|ia\\|y\\)\\|z\\)\\|y\\(?:dia\\|n\\(?:dsey\\|ette\\|n\\)\\)\\)\\|M\\(?:a\\(?:c\\(?:ey\\|ie\\|kenzie\\|y\\)\\|d\\(?:alyn\\|dison\\|el\\(?:eine\\|ine\\|yn\\)\\|ison\\)\\|egan\\|g\\(?:dalena\\|gie\\)\\|ira\\|k\\(?:ayla\\|en\\(?:na\\|zie\\)\\)\\|l\\(?:ia\\|lory\\)\\|ndy\\|r\\(?:anda\\|cella\\|gar\\(?:et\\|ita\\)\\|i\\(?:a\\(?:na\\|[hm]\\)\\|bel\\|cela\\|ela?\\|lyn\\|na\\|s\\(?:a\\|ela\\|ol\\|sa\\)\\|tza\\|[ae]\\)\\|le\\(?:e\\|n[ae]\\)\\|t\\(?:\\(?:h\\|in\\)a\\)\\|[ay]\\)\\|ur\\(?:a\\|een\\)\\|y\\(?:r?a\\)\\)\\|ck\\(?:ayla\\|en\\(?:na\\|zie\\)\\)\\|e\\(?:ag\\(?:h?an\\)\\|g\\(?:h?an\\)\\|l\\(?:anie\\|i\\(?:\\(?:nd\\|ss\\|[ns]\\)a\\)\\|ody\\)\\|r\\(?:anda\\|cedes\\|edith\\)\\)\\|i\\(?:a\\|c\\(?:a\\(?:ela\\|h\\)\\|h\\(?:aela\\|el\\(?:l?e\\)\\)\\)\\|ka\\(?:[ey]?la\\)\\|ndy\\|r\\(?:a\\(?:cle\\|nda\\)\\|eya\\|iam\\)\\|sty\\)\\|o\\(?:ll\\(?:ie\\|y\\)\\|n\\(?:i\\(?:ca\\|ka\\|que\\)\\|tana\\)\\|r\\(?:gan\\|iah\\)\\)\\|y\\(?:\\(?:r\\(?:and\\)?\\)?a\\)\\)\\|N\\(?:a\\(?:di\\(?:a\\|ne\\)\\|ncy\\|omi\\|t\\(?:a\\(?:l\\(?:i[ae]\\|y\\)\\|sha\\)\\|halie\\)\\|yeli\\)\\|i\\(?:a\\|c\\(?:\\(?:hol\\|ol\\(?:ett\\)?\\)e\\)\\|k\\(?:ita\\|ki\\|ole\\)\\|na\\)\\|o\\(?:e\\(?:l\\(?:le\\)?\\|mi\\)\\|r\\(?:m?a\\)\\)\\)\\|O\\(?:\\(?:ctavi\\|l\\(?:g\\|ivi\\)\\)a\\)\\|P\\(?:a\\(?:ige\\|loma\\|mela\\|ola\\|ris\\|tric\\(?:e\\|ia\\)\\|ul\\(?:a\\|in[ae]\\)\\|yton\\)\\|e\\(?:rla\\|yton\\)\\|hoebe\\|r\\(?:ecious\\|i\\(?:ncess\\|scilla\\)\\)\\)\\|R\\(?:a\\(?:ch\\(?:ael\\|e\\(?:al\\|l\\(?:le\\)?\\)\\)\\|ndi\\|quel\\|ven\\)\\|e\\(?:agan\\|be\\(?:c\\(?:c?a\\)\\|kah\\)\\|g\\(?:an\\|ina\\)\\|ina\\|nee\\|yna\\)\\|h\\(?:iannon\\|onda\\)\\|i\\(?:kki\\|ley\\|ta\\)\\|o\\(?:b\\(?:[iy]n\\)\\|c\\(?:helle\\|io\\)\\|s\\(?:emary\\|[ae]\\)\\|xan\\(?:a\\|ne\\)\\)\\|u\\(?:by\\|th\\)\\|y\\(?:an\\|lee\\)\\)\\|S\\(?:a\\(?:brina\\|d\\(?:i?e\\)\\|ge\\|l\\(?:ina\\|ly\\)\\|mantha\\|nd\\(?:ra\\|y\\)\\|r\\(?:a[hi]?\\|ina\\)\\|sha\\|van\\(?:ah\\|nah?\\)\\)\\|carlett\\|e\\(?:\\(?:l[ei]\\|re\\)na\\)\\|h\\(?:a\\(?:ina\\|kira\\|n\\(?:a\\|i\\(?:a\\|ce\\|qua\\)\\|n\\(?:a\\|on\\)\\|tel\\)\\|ron\\|\\(?:un\\|wn\\|y[ln]\\)a\\)\\|e\\(?:a\\|ena\\|ila\\|l\\(?:b\\(?:ie\\|[iy]\\)\\|ly\\)\\|rry\\)\\|irley\\|yanne\\)\\|i\\(?:dney\\|erra\\|lvia\\|mone\\)\\|ky\\(?:e\\|l\\(?:[ae]r\\)\\)\\|o\\(?:fia\\|n\\(?:[iy]a\\)\\|phi[ae]\\)\\|t\\(?:ac\\(?:ey\\|ie\\|[iy]\\)\\|e\\(?:fanie\\|phan\\(?:ie\\|y\\)\\|vie\\)\\|ormy\\)\\|u\\(?:mmer\\|san\\(?:n?a\\)?\\|zanne\\)\\|y\\(?:dn\\(?:e[ey]\\|ie\\)\\|lvia\\)\\)\\|T\\(?:a\\(?:b\\(?:[ai]tha\\)\\|lia\\|m\\(?:ara\\|my\\)\\|n\\(?:\\(?:ish\\|[iy]\\)a\\)\\|r\\(?:a\\|yn\\)\\|sha\\|t\\(?:iana\\|um\\|yana\\)\\|yl\\(?:[eo]r\\)\\)\\|e\\(?:r\\(?:esa\\|r[ai]\\)\\|ssa?\\)\\|h\\(?:\\(?:ali\\|eres\\)a\\)\\|i\\(?:a\\(?:\\(?:nn\\|[nr]\\)a\\)?\\|er\\(?:r?a\\)\\|ffan\\(?:ie\\|[iy]\\)\\|na\\)\\|o\\(?:n\\(?:i\\|ya\\)\\|ri\\)\\|r\\(?:ac\\(?:ey\\|[iy]\\)\\|i\\(?:cia\\|nity\\|s\\(?:[ht]a\\)\\)\\)\\|y\\(?:esha\\|ler\\|ra\\)\\)\\|V\\(?:a\\(?:leri[ae]\\|nes\\(?:s?a\\)\\)\\|eronica\\|i\\(?:ctoria\\|rginia\\|viana?\\)\\)\\|W\\(?:\\(?:end\\|hit\\(?:[ln]e\\)\\)y\\)\\|Xiomara\\|Y\\(?:a\\(?:dira\\|jaira\\|ritza\\|sm\\(?:een\\|ine?\\)\\|zmin\\)\\|es\\(?:s?enia\\)\\|olanda\\|v\\(?:\\(?:ett\\|onn\\)e\\)\\)\\|Zoey?\\)[0-9]+$") ("#scheme" . "rudybot") ("#emacs" . "rudybot"))))
'(erc-ignore-per-channel-reply-alist (quote (("#scheme" . "rudybot") ("#emacs" . "rudybot"))))
'(erc-ignore-reply-list (quote ("snv1?")))
'(erc-insert-away-timestamp-function (quote erc-insert-timestamp-left))
'(erc-insert-timestamp-function (quote erc-insert-timestamp-left))
'(erc-interpret-mirc-color t)
'(erc-join-buffer (quote bury))
'(erc-keywords (quote ("^\\(<.*>\\|\\* \\)")))
'(erc-log-write-after-insert t)
'(erc-log-write-after-send t)
'(erc-max-buffer-size 300000)
'(erc-minibuffer-ignored t)
'(erc-minibuffer-notice t)
'(erc-modules (quote (autoaway autojoin button completion irccontrols log match netsplit readonly replace ring services stamp track truncate)))
'(erc-nick (quote ("pjb")))
'(erc-nickserv-passwords (quote ((freenode (("ogamita" . "ogre-a-mite"))))))
'(erc-notice-prefix " *** ")
'(erc-pals (quote ("bolet.*" "Posterdati")))
'(erc-port 6667)
'(erc-prompt (lambda nil (buffer-name (current-buffer))))
'(erc-prompt-for-nickserv-password nil)
'(erc-prompt-for-password t)
'(erc-quit-reason-various-alist nil)
'(erc-scrolltobottom-mode nil)
'(erc-server "irc.freenode.org")
'(erc-server-coding-system (quote (utf-8 . undecided)))
'(erc-server-reconnect-attempts 100)
'(erc-server-reconnect-timeout 60)
'(erc-text-matched-hook (quote (erc-log-matches erc-beep-on-match)))
'(erc-timestamp-format nil)
'(erc-timestamp-intangible nil)
'(erc-track-enable-keybindings t)
'(erc-track-exclude-types (quote ("JOIN" "KICK" "NICK" "PART" "QUIT" "MODE" "333" "353")))
'(erc-user-full-name "Pascal J. Bourguignon")
'(eval-expression-debug-on-error t)
'(eval-expression-print-length nil)
'(eval-expression-print-level nil)
'(file-precious-flag t)
'(fireplace-smoke-char 37)
'(focus-follows-mouse nil)
'(font-lock-extra-types (quote ("FILE" "\\sw+_t" "[A-Z][A-Za-z]+[A-Z][A-Za-z0-9]+" "bool" "INT8" "INT16" "INT32" "INT64" "INTPTR" "CARD8" "CARD16" "CARD32" "CARD64" "CARDPTR" "SignT" "CHAR" "UNICODE" "DECIMAL" "ADDRESS" "CSTRING255" "CSTRING63" "CSTRING31" "BOOLEAN")) t)
'(font-lock-maximum-decoration t)
'(global-font-lock-mode t nil (font-lock))
'(gnus-article-loose-mime t)
'(gnus-article-sort-functions (quote (gnus-article-sort-by-score)))
'(gnus-cacheable-groups "*")
'(gnus-carpal nil t)
'(gnus-default-charset (quote iso-8859-15))
'(gnus-default-posting-charset (quote utf-8) t)
'(gnus-group-posting-charset-alist (quote (("^\\(no\\|fr\\)\\.[^,]*\\(,[
]*\\(no\\|fr\\)\\.[^,]*\\)*$" iso-8859-15 (iso-8859-15)) ("^\\(fido7\\|relcom\\)\\.[^,]*\\(,[
]*\\(fido7\\|relcom\\)\\.[^,]*\\)*$" koi8-r (koi8-r)) (message-this-is-mail nil nil) (message-this-is-news iso-8859-15 (iso-8859-15)))))
'(gnus-ignored-headers (quote ("^Path:" "^Expires:" "^Date-Received:" "^References:" "^Xref:" "^Lines:" "^Relay-Version:" "^Approved:" "^Sender:" "^Received:" "^X-UIDL:" "^MIME-Version:" "^Return-Path:" "^In-Reply-To:" "^Content-Type:" "^Content-Transfer-Encoding:" "^X-WebTV-Signature:" "^X-MimeOLE:" "^X-MSMail-Priority:" "^X-Priority:" "^X-Loop:" "^X-Authentication-Warning:" "^X-MIME-Autoconverted:" "^X-Face:" "^X-Attribution:" "^X-Originating-IP:" "^Delivered-To:" "^NNTP-[-A-Za-z]+:" "^Distribution:" "^X-no-archive:" "^X-Trace:" "^X-Complaints-To:" "^X-NNTP-Posting-Host:" "^X-Orig.*:" "^Abuse-Reports-To:" "^Cache-Post-Path:" "^X-Article-Creation-Date:" "^X-Poster:" "^X-Mail2News-Path:" "^X-Server-Date:" "^X-Cache:" "^Originator:" "^X-Problems-To:" "^X-Auth-User:" "^X-Post-Time:" "^X-Admin:" "^X-UID:" "^Resent-[-A-Za-z]+:" "^X-Mailing-List:" "^Precedence:" "^Original-[-A-Za-z]+:" "^X-filename:" "^X-Orcpt:" "^Old-Received:" "^X-Pgp:" "^X-Auth:" "^X-From-Line:" "^X-Gnus-Article-Number:" "^X-Majordomo:" "^X-Url:" "^X-Sender:" "^MBOX-Line:" "^Priority:" "^X400-[-A-Za-z]+:" "^Status:" "^X-Gnus-Mail-Source:" "^Cancel-Lock:" "^X-FTN:" "^X-EXP32-SerialNo:" "^Encoding:" "^Importance:" "^Autoforwarded:" "^Original-Encoded-Information-Types:" "^X-Ya-Pop3:" "^X-Face-Version:" "^X-Vms-To:" "^X-ML-NAME:" "^X-ML-COUNT:" "^Mailing-List:" "^X-finfo:" "^X-md5sum:" "^X-md5sum-Origin:" "^X-Sun-Charset:" "^X-Accept-Language:" "^X-Envelope-Sender:" "^List-[A-Za-z]+:" "^X-Listprocessor-Version:" "^X-Received:" "^X-Distribute:" "^X-Sequence:" "^X-Juno-Line-Breaks:" "^X-Notes-Item:" "^X-MS-TNEF-Correlator:" "^x-uunet-gateway:" "^X-Received:" "^Content-length:" "^X-precedence:" "^X-Authenticated-User:" "^X-Comment:" "^X-Report:" "^X-Abuse-Info:" "^X-HTTP-Proxy:" "^X-Mydeja-Info:" "^X-Copyright:" "^X-No-Markup:" "^X-Abuse-Info:" "^X-From_:" "^X-Accept-Language:" "^Errors-To:" "^X-BeenThere:" "^X-Mailman-Version:" "^List-Help:" "^List-Post:" "^List-Subscribe:" "^List-Id:" "^List-Unsubscribe:" "^List-Archive:" "^X-Content-length:" "^X-Posting-Agent:" "^Original-Received:" "^X-Request-PGP:" "^X-Fingerprint:" "^X-WRIEnvto:" "^X-WRIEnvfrom:" "^X-Virus-Scanned:" "^X-Delivery-Agent:" "^Posted-Date:" "^X-Gateway:" "^X-Local-Origin:" "^X-Local-Destination:" "^X-UserInfo1:" "^X-Received-Date:" "^X-Hashcash:" "^Face:" "^X-DMCA-Notifications:" "^X-Abuse-and-DMCA-Info:" "^X-Postfilter:" "^X-Gpg-.*:" "^X-Disclaimer:")))
'(gnus-message-setup-hook (quote (pjb-gnus-message-setup-meat)))
'(gnus-nntp-server nil)
'(gnus-play-startup-jingle nil)
'(gnus-secondary-select-methods (quote nil))
'(gnus-select-method (quote (nntp "news.individual.net")))
'(gnus-subscribe-newsgroup-method (quote gnus-subscribe-zombies))
'(gnus-summary-line-format "%U%R%z%o %B%(%[%4L: %-23,23f%]%) %s
")
'(gnus-treat-display-x-face (quote head))
'(gnus-use-full-window nil)
'(gnus-use-nocem nil)
'(gnus-uu-post-encode-method (quote gnus-uu-post-encode-mime))
'(gnus-visible-headers (quote ("^From:" "^Newsgroups:" "^Subject:" "^Date:" "^Followup-To:" "^Reply-To:" "^Organization:" "^Summary:" "^Keywords:" "^To:" "^[BGF]?Cc:" "^Posted-To:" "^Mail-Copies-To:" "^Mail-Followup-To:" "^Apparently-To:" "^Gnus-Warning:" "^Resent-From:" "^Message-ID:" "^X-Sent:")))
'(gnutls-verify-error t)
'(grep-command "grep -niH -e ")
'(gud-gdb-command-name "gdb --annotate=1")
'(hl-paren-colors (quote ("red" "orange" "yellow" "green" "blue" "violet" "gray" "gray" "gray" "gray" "gray")))
'(holiday-other-holidays (quote ((holiday-fixed 10 28 "Frédérique Saubot") (holiday-fixed 10 11 "Henri Bourguignon") (holiday-fixed 6 10 "Désirée Mayer") (holiday-fixed 3 23 "Françoise Keller") (holiday-fixed 11 25 "Joëlle Bourguignon") (holiday-fixed 12 16 "Agathe De Robert") (holiday-fixed 5 12 "Guillaume De Robert") (holiday-fixed 1 4 "Isabelle Saubot") (holiday-fixed 10 23 "Marc Moini") (holiday-fixed 2 10 "Anne-Marie Castel") (holiday-fixed 6 28 "Jean-François Gaillon") (holiday-fixed 6 28 "Sylvie Gaillon") (holiday-fixed 8 27 "Jean-Philippe Capy") (holiday-fixed 1 25 "Raoul Fruhauf") (holiday-fixed 3 15 "Pascal Bourguignon") (holiday-fixed 4 12 "Jalal Adamsah") (holiday-fixed 5 3 "Samy Karsenty") (holiday-fixed 8 17 "Alain Pierre") (holiday-fixed 1 14 "Bernard Bourguignon") (holiday-fixed 3 3 "Emmanuelle Chaize") (holiday-fixed 12 12 "Nicoleta Reinald") (holiday-fixed 1 3 "Florence Petit") (holiday-fixed 11 16 "Wei Van Chi") (holiday-fixed 12 6 "Marie Lecomte") (holiday-fixed 7 3 "Alain Bourguignon") (holiday-fixed 4 15 "André Reinald") (holiday-fixed 12 13 "Michelle Keller") (holiday-fixed 5 27 "Grégoire Saubot") (holiday-fixed 3 27 "Olivia De Robert") (holiday-fixed 11 18 "Vincent De Robert") (holiday-fixed 7 23 "Gabriel De Robert") (holiday-fixed 3 18 "Claire De Robert") (holiday-fixed 10 26 "Maxime De Robert") (holiday-fixed 3 26 "Edward-Amadeus Reinald") (holiday-fixed 3 4 "Louise Akiko Poullain") (holiday-fixed 8 26 "Iris-Alea Reinald") (holiday-fixed 9 4 "Baptiste Rouit") (holiday-fixed 2 22 "Camille Saubot") (holiday-fixed 8 2 "Clémence Saubot-Fiant") (holiday-fixed 5 29 "François Saubot") (holiday-fixed 1 2 "Henry Saubot") (holiday-fixed 2 8 "Jean-Pierre Baccache") (holiday-fixed 10 28 "Lucia (fille de Camille)") (holiday-fixed 11 26 "Marine Rouit") (holiday-fixed 3 13 "Mathias Fiant") (holiday-fixed 4 8 "Mathilde Rouit") (holiday-fixed 2 2 "Olivier Scmidt Chevalier") (holiday-fixed 2 23 "PtiDoigt Deamon") (holiday-fixed 8 10 "Kiteri (fille de Camille)") (holiday-fixed 9 10 "Remy Rouit") (holiday-fixed 8 7 "Valerie Saubot-Rouit") (holiday-fixed 1 6 "Los Reyes") (holiday-fixed 6 9 "Santa Murcia") (holiday-fixed 7 25 "Fiesta?") (holiday-fixed 10 12 "Los Reyes") (holiday-fixed 12 6 "Fiesta de la Consitución") (holiday-fixed 7 14 "Fête Nationale France"))) t)
'(ido-enable-flex-matching nil)
'(indent-tabs-mode nil)
'(inferior-lisp-filter-regexp "\\`\\s*\\'")
'(inihibit-default-init t)
'(initial-major-mode (quote emacs-lisp-mode))
'(ispell-choices-win-default-height 4)
'(ispell-highlight-p t)
'(ispell-local-dictionary "francais")
'(ispell-local-dictionary-alist (quote (("francais" "[A-Za-zÀ-ÖØ-öø-ÿ]" "[^A-Za-zÀ-ÖØ-öø-ÿ]" "[-']" t nil "~latin9" iso-8859-15))))
'(ispell-message-dictionary-alist (quote (("\"^Newsgroups:[ \\t]*fr\\\\.\"" . "\"francais\"") ("\"^To:[^\\n,]+\\\\.fr[ \\t\\n,>]\"" . "\"francais\"") ("\"^Newsgroups:[ \\t]*(es|mx|ar)\\\\.\"" . "\"castillano\"") ("\"^To:[^\\n,]+\\\\.(es|mx|ar)[ \\t\\n,>]\"" . "\"castillano\"") ("\"^Newsgroups:[ \\t]*uk\\\\.\"" . "\"english\"") ("\"^To:[^\\n,]+\\\\.uk[ \\t\\n,>]\"" . "\"english\"") ("\".*\"" . "\"american\""))))
'(ispell-query-replace-choices nil)
'(kept-new-versions 9)
'(kept-old-versions 0)
'(kill-whole-line t)
'(large-file-warning-threshold nil)
'(lpr-page-header-switches (quote ("-F" "-t")))
'(mail-archive-file-name nil)
'(mail-bury-selects-summary t)
'(mail-default-headers "Organization: Informatimago
X-Accept-Language: fr, es, en
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
Bcc: [email protected]
")
'(mail-default-reply-to "[email protected]")
'(mail-dont-reply-to-names "info-\\|\\(pjb\\|pascal\\)@triton.afaa.asso.fr\\|\\(pjb\\|pascal\\)@thalassa.afaa.asso.fr\\|[email protected]\\|[email protected]\\|\\(pjb\\|pascal\\)[email protected]\\|\\(pjb\\|pascal\\)@afaa.asso.fr\\|[email protected]\\|[email protected]\\|[email protected]\\|[email protected]\\|[email protected]\\|\\(pjb\\|pascal\\)@informatimago.com\\|[email protected]\\|[email protected]\\|[email protected]\\|[email protected]\\|[email protected]\\|[email protected]\\|[email protected]\\|[email protected]\\|[email protected]\\|[email protected]\\|[email protected]\\|[email protected]\\|[email protected]\\|[email protected]\\|[email protected]\\|[email protected]\\|[email protected]\\|\\(pjb\\|pascal\\|pascal.bourguignon\\)@informatimago.com")
'(mail-from-style (quote angle))
'(mail-host-address "informatimago.com")
'(mail-interactive t)
'(mail-mode-hook (quote (mail-abbrevs-setup (lambda nil (set-buffer-file-coding-system (quote utf-8) t t) (set-input-method default-input-method) (local-set-key " " (quote expand-mail-aliases))))))
'(mail-self-blind t)
'(mail-setup-hook (quote (pjb-mail-mode-meat)))
'(mail-signature t)
'(mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^to:\\|^subject:\\|^in-reply-to:\\|^reply-to:\\|^return-path:\\|^mailing-list:\\|^precedence:\\|^x-\\|^content-\\|^cc:\\|^list-\\|^resent\\|^organization:\\|^sender:\\|^user-agent:\\|^mime-version:\\|^delivered-to:\\|^references:")
'(mail-yank-prefix "> ")
'(mark-even-if-inactive t)
'(matlab-comment-line-s "// " t)
'(matlab-comment-on-line-s "// " t)
'(matlab-comment-region-s "// " t)
'(max-specpdl-size 2048)
'(menu-bar-mode nil)
'(message-default-charset (quote iso-8859-15))
'(message-default-headers "Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwAQMAAABtzGvEAAAABlBMVEUAAAD///+l2Z/dAAAA
oElEQVR4nK3OsRHCMAwF0O8YQufUNIQRGIAja9CxSA55AxZgFO4coMgYrEDDQZWPIlNAjwq9
033pbOBPtbXuB6PKNBn5gZkhGa86Z4x2wE67O+06WxGD/HCOGR0deY3f9Ijwwt7rNGNf6Oac
l/GuZTF1wFGKiYYHKSFAkjIo1b6sCYS1sVmFhhhahKQssRjRT90ITWUk6vvK3RsPGs+M1RuR
mV+hO/VvFAAAAABJRU5ErkJggg==
X-Accept-Language: fr, es, en
")
'(message-directory "~/mail/")
'(message-from-style (quote angles))
'(message-log-max 5000)
'(message-required-news-headers (quote (From Newsgroups Subject Date Message-ID (optional . Organization) (optional . User-Agent) (X-Face lambda nil (gnus-x-face-from-file "~/my-face.xbm")))))
'(message-user-organization "Informatimago")
'(mew-conf-path "~/.new")
'(mew-mail-path "~/mail")
'(mew-pop-auth (quote pass))
'(mew-pop-header-only nil)
'(mew-pop-server "pop.informatimago.com")
'(mew-pop-size 0)
'(mew-smtp-server "smtp.informatimago.com")
'(mew-use-biff t)
'(mew-use-biff-bell t)
'(mew-use-full-window t)
'(mew-use-other-frame-for-draft nil)
'(mew-use-text/html t)
'(minibuffer-prompt-properties (quote (read-only t point-entered minibuffer-avoid-prompt face minibuffer-prompt)))
'(mm-coding-system-priorities (quote (ascii iso-latin-1 iso-latin-9 utf-8)))
'(mspools-update t)
'(next-screen-context-lines 0)
'(nntp-authinfo-file "~/.authinfo")
'(org-agenda-files (quote ()))
'(org-confirm-babel-evaluate nil)
'(org-fontify-done-headline t)
'(org-todo-keywords (quote ((sequence "TODO(t@)" "IN-PROGRESS(p@)" "|" "DONE(d@)" "CANCELED(c@)"))))
'(package-archives (quote (("gnu" . "http://elpa.gnu.org/packages/") ("marmalade" . "http://marmalade-repo.org/packages/") ("melpa" . "http://melpa.milkbox.net/packages/"))))
'(package-selected-packages (quote (swift-mode haskell-mode helm markdown-mode inf-ruby w3m popup json emms paredit textmate smartparens robe jdee highlight-indentation flycheck enh-ruby-mode dash-at-point company column-marker auto-complete)))
'(ph-server "localhost" t)
'(pjb-test-var 2 t)
'(pop-up-frames nil)
'(pop-up-windows t)
'(pr-faces-p t)
'(print-gensym t t)
'(printer-name "Samsung_M2020_Series__SEC30CDA7116AD9_" t)
'(prolog-program-name "/usr/bin/swipl")
'(ps-font-size (quote (7 . 11)))
'(ps-header-lines 0)
'(ps-left-header nil)
'(ps-paper-type (quote a4) t)
'(ps-print-header nil)
'(ps-print-header-frame nil)
'(ps-printer-name "normal_gray")
'(ps-right-header nil)
'(ps-show-n-of-n nil)
'(read-mail-command (quote vm))
'(read-quoted-char-radix 10)
'(redshank-accessor-name-function (quote identity))
'(redshank-canonical-package-designator-function (quote redshank-package-designator/string))
'(redshank-licence-names (quote ("BSD-style" "GPL" "LGPL" "LLGPL" "MIT" "MIT-style" "GPL2" "GPL2+" "GPL3" "AGPL3")))
'(require-final-newline (quote visit-save))
'(rmail-confirm-expunge nil)
'(rmail-display-summary t)
'(rmail-enable-mime nil)
'(rmail-enable-multibyte t t)
'(rmail-ignored-headers "^user-agent:\\|^\\(importa\\|precede\\)nce:\\|^priority:\\|^list-\\|^mailing-list\\|^via:\\|^mail-\\(from:\\|follow\\)\\|^\\(in-\\)?reply-to:\\|^sender:\\|^origin:\\|^references:\\|^status:\\|^received:\\|^summary-line:\\|^resent-\\|^\\(resent-\\)?message-id:\\|^nntp-posting-host:\\|^path:\\|^delivered-to:\\|^lines:\\|^mime-version:\\|^content-\\|^return-path:\\|^errors-to:\\|^return-receipt-to:\\|^x400-\\|^x-\\|^x-attribution:\\|^x-char.*:\\|^x-coding-system:\\|^x-face:\\|^x-mailer:\\|^x-disclaimer:\\|phone:")
'(rmail-output-file-alist nil t)
'(rmail-preserve-inbox nil)
'(rmail-redisplay-summary t)
'(rmail-remote-password nil)
'(rmail-remote-password-required nil)
'(rmail-secondary-file-directory "~/mail")
'(rmail-summary-line-decoder (quote identity))
'(rmail-summary-window-size 12)
'(safe-local-variable-values (quote ((whitespace-check-buffer-indent) (eval activate-input-method (quote latin-1-prefix)) (default-input-method . latin-1-prefix) (flycheck-mode) (eval add-hook (quote before-save-hook) (quote time-stamp)) (Package . Lisp-Binary) (Package . hemlock-internals) (Package . INSPECTOR) (Package . SURF) (Package . bind) (Package ARM :use CL) (eval let ((inhibit-read-only t) (compilation-filter-start (point-min))) (save-excursion (goto-char (point-max)) (grep-filter) (set-buffer-modified-p nil))) (Lowercase . T) (Package ANSI-LOOP "COMMON-LISP") (c-indent-level . 4) (compile-cmd . "gcc -DMODULE -Wall -Wstrict-prototypes -O6 -c natsemi.c") (package . net\.mail) (package . net\.post-office) (eval cl-indent (quote defmeth) 3) (more . org) (Package . BORDEAUX-FFT) (Package . XLIB) (Lowercase . Yes) (Package . gambol) (Package . C) (package . rune-dom) (Package . Hemlock) (Package . GUI) (view-mode t) (eval buttonize-buffer) (bug-reference-url-format . clisp-bug-reference-url-format) (tab-always-indent . t) (electric-indent-mode) (Package . cl-user) (Syntax . common-lisp) (Package . Portable-Threads-System) (Package . LEXER) (Package . F2CL) (sentence-end-double-space . t) (eval cl-indent (quote cvm-do-symbols) 1) (eval cl-indent (quote cvm-dolist) 1) (eval cl-indent (quote cvm-define-structure) 2) (eval cl-indent (quote raw-memory:WITH-SIGSEG-HANDLER) 0) (eval cl-indent (quote when-debug) 1) (eval cl-indent (quote with-generation) 1) (eval cl-indent (quote with-gc-lock) 0) (eval cl-indent (quote define-common-structure) 1) (eval cl-indent (quote defenum) 1) (eval put (quote let-errno) (quote common-lisp-indent-function) 1) (eval cl-indent (quote defbf) 2) (c-file-style . ruby) (eval cl-indent (quote ffi:with-c-place) 1) (Package . CL-WHO) (eval cl-indent (quote xlib:event-case) (quote ((&whole 6 1 1 1 1 1 1) &rest (&whole 2 1 1 1 1 1 1 1 1 1 1 1)))) (Package . LISP-UNIT) (eval when (fboundp (quote asm7090)) (asm7090)) (Package . Hemlock-Internals) (Log . hemlock\.log) (eval cl-indent (quote defcommand) 3) (eval progn (local-set-key (kbd "<kp-divide>") (function lisp-indent-line)) (local-set-key (kbd "<kp-multiply>") (lambda nil (interactive) (insert (kbd "SPC")))) (local-set-key (kbd "<XF86_Ungrab>") (function backward-delete-char-untabify))) (Package . FLEXI-STREAMS) (Package . COMMON-LISP-USER) (Package . PS) (Package . SCHEME-TRANSLATOR) (Package DATABASE :USE LISP) (eval cl-indent (quote dolist/separator) 1) (Package . HUNCHENTOOT) (Package . CLEVER-LOAD) (Package . REVISED^4-SCHEME) (Package . CL-USER) (Syntax . Common-Lisp) (eval put (quote define-structure) (quote common-lisp-indent-function) 1) (Package X8664 :use CL) (Syntax . Common-lisp) (package . WILBUR) (Package . SERROR) (Package . CL-PPCRE) (Syntax . COMMON-LISP) (tab-always-indent) (Syntax . ANSI-Common-Lisp) (Base . 10) (Package . CCL) (org-todo-keywords (sequence "TODO(t@)" "IN-PROGRESS(p@)" "|" "DONE(d@)" "CANCELED(c@)")) (org-fontify-done-headline . t) (lexical-binding . t) (Package . DRAKMA) (eval cl-indent (quote cvm-do-symbols) 1) (eval cl-indent (quote cvm-dolist) 1) (eval cl-indent (quote cvm-define-structure) 2) (eval cl-indent (quote raw-memory:WITH-SIGSEG-HANDLER) 0) (eval cl-indent (quote when-debug) 1) (eval cl-indent (quote with-generation) 1) (eval cl-indent (quote with-gc-lock) 0) (eval cl-indent (quote define-common-structure) 1) (eval cl-indent (quote defenum) 1) (eval put (quote let-errno) (quote common-lisp-indent-function) 1) (eval cl-indent (quote defbf) 2) (c-file-style . ruby) (eval cl-indent (quote ffi:with-c-place) 1) (Package . CL-WHO) (eval cl-indent (quote xlib:event-case) (quote ((&whole 6 1 1 1 1 1 1) &rest (&whole 2 1 1 1 1 1 1 1 1 1 1 1)))) (Package . LISP-UNIT) (eval when (fboundp (quote asm7090)) (asm7090)) (Package . Hemlock-Internals) (Log . hemlock\.log) (eval cl-indent (quote defcommand) 3) (eval progn (local-set-key (kbd "<kp-divide>") (function lisp-indent-line)) (local-set-key (kbd "<kp-multiply>") (lambda nil (interactive) (insert (kbd "SPC")))) (local-set-key (kbd "<XF86_Ungrab>") (function backward-delete-char-untabify))) (Package . FLEXI-STREAMS) (Package . COMMON-LISP-USER) (Package . PS) (Package . SCHEME-TRANSLATOR) (Package DATABASE :USE LISP) (eval cl-indent (quote dolist/separator) 1) (Package . HUNCHENTOOT) (Package . CLEVER-LOAD) (Package . REVISED^4-SCHEME) (Package . CL-USER) (Syntax . Common-Lisp) (eval put (quote define-structure) (quote common-lisp-indent-function) 1) (Package X8664 :use CL) (Syntax . Common-lisp) (package . WILBUR) (Package . SERROR) (Package . CL-PPCRE) (Syntax . COMMON-LISP) (tab-always-indent) (tab-stop . 4) (Syntax . ANSI-Common-Lisp) (Base . 10) (Package . CCL) (org-todo-keywords (sequence "TODO(t@)" "IN-PROGRESS(p@)" "|" "DONE(d@)" "CANCELED(c@)")) (org-fontify-done-headline . t) (lexical-binding . t))))
'(select-enable-clipboard t)
'(select-enable-primary t)
'(send-mail-function (quote smtpmail-send-it))
'(sh-indent-after-case 0)
'(sh-indent-after-switch 0)
'(sh-indent-for-case-alt (quote +))
'(sh-indent-for-case-label 0)
'(show-paren-mode t)
'(show-paren-ring-bell-on-mismatch nil)
'(slime-autodoc-use-multiline-p t)
'(slime-compilation-finished-hook (quote (slime-maybe-show-xrefs-for-notes)))
'(slime-complete-symbol-function (quote slime-fuzzy-complete-symbol))
'(slime-space-information-p nil)
'(slime-startup-animation nil)
'(smtpmail-default-smtp-server "hubble.informatimago.com")
'(smtpmail-local-domain "lan.informatimago.com")
'(smtpmail-sendto-domain "informatimago.com")
'(smtpmail-smtp-server "hubble.informatimago.com")
'(smtpmail-smtp-service 587)
'(smtpmail-smtp-user "[email protected]")
'(smtpmail-stream-type (quote ssl))
'(smtpmail-warn-about-unknown-extensions t)
'(spam-autodetect-recheck-messages t)
'(speedbar-show-unknown-files t)
'(stack-trace-on-error nil)
'(tab-stop-list (quote (4 8 12 16 20 24 28 32 36 40 44 48 52 56 60 64 68 72 76 80)))
'(tab-width 4)
'(tags-table-list (quote nil))
'(tls-checktrust t)
'(tnt-use-timestamps t)
'(tnt-username-alist (quote (("matimago") ("ogamita"))))
'(tool-bar-mode nil)
'(tooltip-frame-parameters (quote ((nil . "tooltip") (right-fringe . 6) (left-fringe . 6) (nil . "lightyellow") (nil . 0) (nil . 1))))
'(tramp-default-method "ssh" nil (tramp))
'(truncate-partial-width-windows nil)
'(url-be-asynchronous t)
'(url-honor-refresh-requests nil)
'(user-full-name "Pascal J. Bourguignon")
'(user-mail-address "[email protected]")
'(vc-annotate-background "snow1")
'(vc-annotate-color-map (quote ((4.943848 . "#0000f0") (10.217285 . "#0000e0") (15.490723 . "#0000d0") (20.76416 . "#0000c0") (26.037598 . "#0000b0") (31.311035 . "#0000a0") (36.584473 . "#000090") (41.85791 . "#000080") (47.131348 . "#000070") (52.404785 . "#000060") (57.678223 . "#000050") (62.95166 . "#000040") (68.225098 . "#000030") (73.498535 . "#000020") (78.771973 . "#000010"))))
'(vc-annotate-very-old-color "#000000")
'(vc-follow-symlinks t)
'(vc-make-backup-files t)
'(version-control t)
'(vm-auto-displayed-mime-content-types (quote ("text/enriched" "text/plain" "message" "message/rfc822" "message/disposition-notification" "multipart")))
'(vm-auto-folder-alist (quote (("^\\(From:\\|To:\\|Cc:\\)" ("svn-.*anevia.com" . "~/mail/anevia-svn.mbox") ("[email protected]" . "~/mail/anevia-staff.mbox") ("[email protected]" . "~/mail/cpptest.mbox") ("\\(bese.*common-lisp\\)" . "~/mail/ucw.mbox") ("\\(lispme\\|clisp\\|sbcl\\|cmucl\\|openmcl\\|ilisp\\|clocc\\|clump\\|cclan\\|ecls\\|nocrew.org\\|biolisp\\|lispweb\\|climacs\\|gardeners\\|acl2\\|Planet Lisp\\|lisa-users\\|opencyc\\|small-cl-src\\|cl-faq\\|cl-pdf\\|cl-typesetting\\|movitz\\|quiz@common-lisp\\|slime\\)" . "~/mail/lisp.mbox") ("[email protected]" . "~/mail/cert.mbox") ("gentoo" . "~/mail/gentoo.mbox")) ("^Subject:" ("\\[libanevia\\|manager2\\|aipc\\]" . "~/mail/anevia-manager2.mbox") ("cs daily" . "~/mail/cs-papers.mbox") ("CRYPTO.*GRAM" . "~/mail/crypto-gram.mbox") ("ipnsig" . "~/mail/ipnsig.mbox") ("\\(lispme\\|clisp\\|sbcl\\|cmucl\\|openmcl\\|ilisp\\|clocc\\|clump\\|cclan\\|ecls\\|nocrew.org\\|biolisp\\|lispweb\\|climacs\\|gardeners\\|acl2\\|Planet Lisp\\|lisa-users\\|opencyc\\|small-cl-src\\|cl-faq\\|cl-pdf\\|cl-typesetting\\|movitz\\|quiz@common-lisp\\|slime\\)" . "~/mail/lisp.mbox")))))
'(vm-auto-folder-case-fold-search t)
'(vm-display-xfaces t)
'(vm-folder-directory "~/mail/")
'(vm-highlighted-header-face (quote font-lock-comment-face))
'(vm-honor-mime-content-disposition nil)
'(vm-included-text-prefix "> ")
'(vm-infer-mime-types t)
'(vm-mail-mode-hook nil)
'(vm-mime-8bit-composition-charset "utf-8")
'(vm-mime-8bit-text-transfer-encoding (quote 8bit))
'(vm-mime-alternative-select-method (quote (favorite-internal "text/enriched" "text/plain")))
'(vm-mime-attachment-auto-suffix-alist (quote (("image/tiff" . ".tif") ("image/jpeg" . ".jpg") ("image/gif" . ".gif") ("image/png" . ".png") ("text/html" . ".html") ("audio/basic" . ".au") ("video/mpeg" . ".mpg") ("video/quicktime" . ".mov") ("application/postscript" . ".ps") ("application/pdf" . ".pdf") ("application/vnd.ms-excel" . ".xls") ("application/mac-binhex40" . ".hqx") ("application/pdf" . ".pdf") ("application/zip" . ".zip"))))
'(vm-mime-default-face-charsets (quote ("us-ascii" "iso-8859-1" "iso-8859-15" "win-1250" "ANSI_X3.4-1968")))
'(vm-mime-external-content-types-alist (quote (("application/pdf" "acroread") ("image/gif" "xview") ("image/jpg" "xview") ("image/tiff" "xview") ("image/jpeg" "xview"))))
'(vm-mime-use-w3-for-text/html t)
'(vm-mutable-frames nil)
'(vm-preview-lines nil)
'(vm-reply-subject-prefix "Re: ")
'(vm-spool-files (quote (("~/INBOX" "/var/spool/mail/pjb" "~/INBOX-local.crash"))))
'(vm-summary-highlight-face (quote font-lock-comment-face))
'(vm-url-browser (quote pjb-browse-url))
'(vm-use-lucid-highlighting t)
'(w3-default-homepage "http://www.google.com")
'(w3-delay-image-loads t)
'(w3-display-frames nil)
'(w3-do-incremental-display t)
'(w3-honor-stylesheets nil)
'(w3-horizontal-rule-char 45)
'(w3-source-file-hook nil)
'(w3-use-terminal-characters nil)
'(w3-use-terminal-characters-on-tty nil)
'(w3-user-colors-take-precedence t)
'(w3-user-fonts-take-precedence t)
'(w3m-arrived-file "~/.w3m/arrived")
'(w3m-bookmark-file "~/.w3m/bookmark.html")
'(w3m-bookmark-file-coding-system (quote utf-8))
'(w3m-coding-system (quote utf-8))
'(w3m-cookie-file "~/.w3m/cookie")
'(w3m-default-display-inline-images t)
'(w3m-fb-mode nil)
'(w3m-file-coding-system (quote utf-8))
'(w3m-file-name-coding-system (quote iso-8859-1))
'(w3m-form-textarea-directory "~/.w3m/textarea")
'(w3m-home-page "http://localhost/")
'(w3m-pop-up-frames nil)
'(w3m-pop-up-windows nil)
'(w3m-session-file "~/.w3m/sessions")
'(w3m-terminal-coding-system (quote utf-8))
'(w3m-use-cookies t)
'(w3m-use-tab nil)
'(w3m-use-tab-menubar nil)
'(w3m-use-title-buffer-name t)
'(warning-suppress-types (quote ((undo discard-info)))))
(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.
'(3dbutton ((t (:background "grey33" :foreground "grey11" :box (:line-width 2 :color "white" :style released-button)))))
'(3dbutton-highlighted ((t (:inherit 3dbutton :background "grey66" :foreground "grey11" :box (:line-width 2 :color "grey75" :style pressed-button)))))
'(android-mode-debug-face ((t (:foreground "cyan"))))
'(android-mode-info-face ((t (:foreground "chartreuse"))))
'(android-mode-verbose-face ((t (:foreground "medium spring green"))))
'(android-mode-warning-face ((t (:foreground "pink"))))
'(column-marker-1-face ((t (:background "AntiqueWhite"))))
'(custom-comment ((((class grayscale color) (background dark)) (:background "light green"))))
'(custom-group-tag ((t (:foreground "blue" :weight bold :height 1.2))))
'(custom-variable-tag ((t (:inherit variable-pitch :foreground "cadet blue" :weight bold :height 1.2))))
'(diff-nonexistent ((t (:background "grey11" :foreground "light green"))))
'(ediff-even-diff-A ((t (:background "grey50"))))
'(ediff-odd-diff-A ((t (:background "Grey33"))))
'(ediff-odd-diff-B ((t (:background "grey30"))))
'(erc-default-face ((t (:foreground "#55ffaa"))))
'(erc-fool-face ((t (:foreground "#ffffee"))))
'(erc-input-face ((t (:foreground "cyan2"))))
'(erc-notice-face ((t (:foreground "gray70"))))
'(erc-pal-face ((t (:foreground "cadetblue4" :weight bold))))
'(erc-timestamp-face ((t (:foreground "dark green" :weight bold))))
'(fg:erc-color-face12 ((t (:foreground "cyan" :weight bold))))
'(fg:erc-color-face2 ((t (:foreground "LightBlue1"))))
'(font-lock-cl-function-face ((t (:foreground "DodgerBlue" :weight bold))))
'(font-lock-cl-standard-generic-function-face ((t (:foreground "turquoise" :weight bold))))
'(font-lock-comment-delimiter-face ((default (:inherit font-lock-comment-face :foreground "red")) (((class color) (min-colors 16)) nil)))
'(font-lock-comment-face ((t (:foreground "red" :slant italic))))
'(font-lock-doc-face ((t (:inherit font-lock-string-face :foreground "darkviolet"))))
'(font-lock-string-face ((t (:foreground "Orchid"))))
'(gnus-cite-1 ((((class color) (background light)) (:foreground "blue"))))
'(gnus-cite-10 ((((class color) (background light)) (:foreground "brown"))))
'(gnus-cite-11 ((((class color) (background light)) (:foreground "red"))))
'(gnus-cite-2 ((((class color) (background light)) (:foreground "yellow1"))))
'(gnus-cite-3 ((((class color) (background light)) (:foreground "lightblue2"))))
'(gnus-cite-4 ((((class color) (background light)) (:foreground "yellow2"))))
'(gnus-cite-5 ((((class color) (background light)) (:foreground "lightblue3"))))
'(gnus-cite-6 ((((class color) (background light)) (:foreground "yellow3"))))
'(gnus-cite-7 ((((class color) (background light)) (:foreground "lightblue4"))))
'(gnus-cite-8 ((((class color) (background light)) (:foreground "yellow4"))))
'(gnus-cite-9 ((((class color) (background light)) (:foreground "steelblue3"))))
'(gnus-group-mail-3 ((t (:foreground "cyan" :weight bold))))
'(gnus-summary-normal-read ((((class color) (background light)) (:foreground "green"))))
'(gnus-summary-selected ((t (:foreground "green2" :underline t))))
'(jde-java-font-lock-javadoc-face ((t (:inherit font-lock-doc-face :foreground "pink"))))
'(jde-java-font-lock-link-face ((t (:foreground "cyan" :underline t))))
'(match ((t (:background "#3a3a3e"))))
'(message-cited-text ((((class color) (background light)) (:foreground "blue"))))
'(message-header-xheader ((((class color) (background dark)) (:foreground "DodgerBlue"))))
'(message-separator ((((class color) (background dark)) (:foreground "DodgerBlue" :weight bold))))
'(mmm-default-submode-face ((t (:foreground "cyan"))))
'(mode-line ((((class color) (min-colors 88)) (:background "grey11" :foreground "cyan" :box (:line-width -1 :color "cyan" :style released-button)))))
'(mode-line-inactive ((default (:inherit mode-line)) (((class color) (min-colors 88) (background dark)) (:background "grey11" :foreground "gray30" :box (:line-width -1 :color "cyan") :weight light))))
'(org-agenda-dimmed-todo-face ((t (:foreground "yellow"))))
'(org-done ((t (:foreground "PaleGreen" :weight normal :strike-through t))))
'(org-headline-done ((((class color) (min-colors 16) (background dark)) (:foreground "LightSalmon" :strike-through t))))
'(read-only-face ((t (:background "gray30"))) t)
'(rst-level-1-face ((t (:background "grey20" :height 1.9))) t)
'(rst-level-2-face ((t (:background "grey20" :height 1.7))) t)
'(rst-level-3-face ((t (:background "grey20" :height 1.4))) t)
'(rst-level-4-face ((t (:background "grey20" :height 1.2))) t)
'(rst-level-5-face ((t (:background "grey20" :height 1.1 :weight bold))) t)
'(rst-level-6-face ((t (:background "grey20" :height 1.0 :weight bold))) t)
'(semantic-unmatched-syntax-face ((((class color) (background dark)) nil)))
'(slime-repl-output-face ((t (:foreground "yellow green"))))
'(smerge-refined-added ((t (:inherit smerge-refined-change :background "#115511")))))
(defun string-to-asn1-octet-string (string)
(format "'%s'H" (mapconcat
(lambda (ch)
(format "%02X%02X"
(mod ch 256)
(truncate ch 256)))
string
"")))
(defun string-to-asn1-octet-string-at-point ()
(interactive)
(let ((string (sexp-at-point)))
(if (stringp string)
(progn
(kill-sexp)
(insert (string-to-asn1-octet-string string)))
(error "Not a string at point: %S" string))))
(defun string-from-asn1-octet-string (os)
(let ((os (if (and (string= "'" (subseq os 0 1))
(string= "'H" (subseq os (- (length os) 2))))
(subseq os 1 (- (length os) 2))
os)))
(coerce (loop
for i below (length os) by 4
for l = (car (read-from-string (concat "#x" (subseq os i (+ i 2)))))
for h = (car (read-from-string (concat "#x" (subseq os (+ i 2) (+ i 4)))))
for c = (+ (* h 256) l)
collect c)
'string)))
(defun convert-all-asn1-octet-string-to-string (start end)
(interactive "r")
(goto-char start)
(while (re-search-forward "'[0-9A-Fa-f]*'H" end t)
(let ((os (match-string 0)))
(delete-region (match-beginning 0) (match-end 0))
(insert (format "%S" (string-from-asn1-octet-string os))))))
(string-from-asn1-octet-string "'4900410053002D00450043004300'H")
"IAS-ECC"
;; Local Variables:
;; coding: utf-8
;; eval: (flycheck-mode -1)
;; End: