Files
@ 67d47ad4e0bd
Branch filter:
Location: workgroups2/src/workgroups-utils-basic.el
67d47ad4e0bd
20.4 KiB
text/x-elisp
Replaced wg-awhen
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 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 | ;;; workgroups-utils.el --- Utilities used by Workgroups
;;; Commentary:
;;
;; A bunch of general purpose-ish utilities used by Workgroups.
;;
;;; Code:
;;; utils used in macros
(require 'cl-lib)
(require 'anaphora)
(require 'workgroups-faces)
(require 'workgroups-variables)
(defmacro wg-with-gensyms (syms &rest body)
"Bind all symbols in SYMS to `gensym's, and eval BODY."
(declare (indent 1))
`(let (,@(mapcar (lambda (sym) `(,sym (cl-gensym))) syms)) ,@body))
(defmacro wg-dbind (args expr &rest body)
"Bind the variables in ARGS to the result of EXPR and execute BODY.
Abbreviation of `destructuring-bind'."
(declare (indent 2))
`(cl-destructuring-bind ,args ,expr ,@body))
(defun wg-partition (list &optional n step)
"Take LIST, return a list of N length sublists, offset by STEP.
N defaults to 2, and STEP defaults to N.
Iterative to prevent stack overflow."
(let* ((n (or n 2)) (step (or step n)) acc)
(while list
(push (wg-take list n) acc)
(setq list (nthcdr step list)))
(nreverse acc)))
;;; bindings
(defmacro wg-if-let (cond-form then &rest else)
"Bind VAR to the return value of COND. If VAR is non-nil, do THEN.
Else do ELSE...
\(fn ((VAR COND) THEN ELSE...)"
(declare (indent 2))
`(let (,cond-form)
(if ,(car cond-form) ,then ,@else)))
(defmacro wg-when-let (binds &rest body)
"Like `let*' but when all BINDS are non-nil - eval BODY."
(declare (indent 1))
(wg-dbind (bind . binds) binds
(when (consp bind)
`(let (,bind)
(when ,(car bind)
,(if (not binds) `(progn ,@body)
`(wg-when-let ,binds ,@body)))))))
(defmacro wg-when-boundp (symbols &rest body)
"When all SYMBOLS are bound, `eval' BODY."
(declare (indent 1))
`(when (and ,@(mapcar (lambda (sym) `(boundp ',sym)) symbols))
,@body))
;;; do-style wrappers
(defmacro wg-docar (spec &rest body)
"do-style wrapper for `mapcar'.
\(fn (VAR LIST) BODY...)"
(declare (indent 1))
`(mapcar (lambda (,(car spec)) ,@body) ,(cadr spec)))
(defmacro wg-dohash (spec &rest body)
"do-style wrapper for `maphash'.
\(fn (KEY VALUE TABLE [RESULT]) BODY...)"
(declare (indent 1))
(wg-dbind (key val table &optional result) spec
`(progn (maphash (lambda (,key ,val) ,@body) ,table) ,result)))
(defmacro wg-doconcat (spec &rest body)
"do-style wrapper for `mapconcat'.
\(fn (VAR SEQ [SEPARATOR]) BODY...)"
(declare (indent 1))
(wg-dbind (elt seq &optional sep) spec
`(mapconcat (lambda (,elt) ,@body) ,seq (or ,sep ""))))
;;; anaphora
(defmacro wg-asetf (&rest places-and-values)
"Anaphoric `setf'."
`(progn ,@(mapcar (lambda (pv) `(let ((it ,(car pv))) (setf ,@pv)))
(wg-partition places-and-values 2))))
;;; other control structures
(defmacro wg-destructuring-dolist (spec &rest body)
"Loop over a list.
Evaluate BODY, destructuring LIST into SPEC, then evaluate RESULT
to get a return value, defaulting to nil. The only hitch is that
spec must end in dotted style, collecting the rest of the list
into a var, like so: (a (b c) . rest)
\(fn (SPEC LIST [RESULT]) BODY...)"
(declare (indent 1))
(wg-dbind (loopspec list &optional result) spec
(let ((rest (cdr (last loopspec))))
(wg-with-gensyms (list-sym)
`(let ((,list-sym ,list))
(while ,list-sym
(wg-dbind ,loopspec ,list-sym
,@body
(setq ,list-sym ,rest)))
,result)))))
;;; numbers
(defun wg-step-to (n m step)
"Increment or decrement N toward M by STEP.
Return M when the difference between N and M is less than STEP."
(cond ((= n m) n)
((< n m) (min (+ n step) m))
((> n m) (max (- n step) m))))
(defun wg-within (num lo hi &optional hi-inclusive)
"Return t when NUM is within bounds LO and HI.
HI-INCLUSIVE non-nil means the HI bound is inclusive."
(and (>= num lo) (if hi-inclusive (<= num hi) (< num hi))))
(defun wg-int-to-b36-one-digit (i)
"Return a character in 0..9 or A..Z from I, and integer 0<=I<32.
Cribbed from `org-id-int-to-b36-one-digit'."
(cond ((not (wg-within i 0 36))
(error "%s out of range" i))
((< i 10) (+ ?0 i))
((< i 36) (+ ?A i -10))))
(defun wg-b36-to-int-one-digit (i)
"Turn a character 0..9, A..Z, a..z into a number 0..61.
The input I may be a character, or a single-letter string.
Cribbed from `org-id-b36-to-int-one-digit'."
(and (stringp i) (setq i (string-to-char i)))
(cond ((and (>= i ?0) (<= i ?9)) (- i ?0))
((and (>= i ?A) (<= i ?Z)) (+ (- i ?A) 10))
(t (error "Invalid b36 character"))))
(defun wg-int-to-b36 (i &optional length)
"Return a base 36 string from I."
(let ((base 36) b36)
(cl-labels ((add-digit () (push (wg-int-to-b36-one-digit (mod i base)) b36)
(setq i (/ i base))))
(add-digit)
(while (> i 0) (add-digit))
(setq b36 (cl-map 'string 'identity b36))
(if (not length) b36
(concat (make-string (max 0 (- length (length b36))) ?0) b36)))))
(defun wg-b36-to-int (str)
"Convert STR, a base-36 string, into the corresponding integer.
Cribbed from `org-id-b36-to-int'."
(let ((result 0))
(mapc (lambda (i)
(setq result (+ (* result 36)
(wg-b36-to-int-one-digit i))))
str)
result))
;;; lists
(defmacro wg-removef-p (item seq-place &rest keys)
"If ITEM is a `member*' of SEQ-PLACE, remove it from SEQ-PLACE and return t.
Otherwise return nil. KEYS can be any keywords accepted by `remove*'."
`(> (length ,seq-place)
(length (setf ,seq-place (cl-remove ,item ,seq-place ,@keys)))))
(defmacro wg-pushnew-p (item seq-place &rest keys)
"If ITEM is not a `member' of SEQ-PLACE, push it to SEQ-PLACE and return t.
Otherwise return nil. KEYS can be any keyword args accepted by `pushnew'."
`(< (length ,seq-place)
(length (cl-pushnew ,item ,seq-place ,@keys))))
(defun wg-last1 (list)
"Return the last element of LIST."
(car (last list)))
(defun wg-take (list n)
"Return a list of the first N elts in LIST."
(butlast list (- (length list) n)))
(defun wg-leave (list n)
"Return a list of the last N elts in LIST."
(nthcdr (- (length list) n) list))
(defun wg-rnth (n list)
"Return the Nth element of LIST, counting from the end."
(nth (- (length list) n 1) list))
(defun wg-take-until-fail (pred list)
"Take elements from LIST up to the first element on which PRED fails."
(let (taken)
(catch 'result
(dolist (elt list (nreverse taken))
(if (funcall pred elt) (push elt taken)
(throw 'result (nreverse taken)))))))
(defun wg-range (start end)
"Return a list of integers from START up to but not including END."
(let (accum)
(dotimes (i (- end start) (nreverse accum))
(push (+ start i) accum))))
(defun wg-rotate-list (list &optional offset)
"Rotate LIST by OFFSET. Positive OFFSET rotates left, negative right."
(when list
(let ((split (mod (or offset 1) (length list))))
(append (nthcdr split list) (wg-take list split)))))
(defun wg-center-rotate-list (list)
"Rotate LIST so it's first elt is in the center. When LIST's
length is even, the first elt is left nearer the front."
(wg-rotate-list list (- (/ (1- (length list)) 2))))
(defun wg-insert-after (elt list index)
"Insert ELT into LIST after INDEX."
(let ((new-list (cl-copy-list list)))
(push elt (cdr (nthcdr index new-list)))
new-list))
(defun wg-insert-before (elt list index)
"Insert ELT into LIST before INDEX."
(if (zerop index) (cons elt list)
(wg-insert-after elt list (1- index))))
(defun wg-move-elt (elt list index &rest keys)
"Move ELT before INDEX in LIST.
KEYS is passed to `remove*'."
(wg-insert-before elt (apply 'cl-remove elt list keys) index))
(defun wg-cyclic-nth (list n)
"Return the Nth element of LIST, modded by the length of list."
(nth (mod n (length list)) list))
(defun wg-cyclic-offset-elt (elt list n)
"Cyclically offset ELT's position in LIST by N."
(wg-when-let ((pos (cl-position elt list)))
(wg-move-elt elt list (mod (+ n pos) (length list)))))
(defun wg-cyclic-nth-from-elt (elt list n &rest keys)
"Return the elt in LIST N places cyclically from ELT.
If ELT is not present is LIST, return nil.
KEYS is passed to `position'."
(wg-when-let ((pos (apply 'cl-position elt list keys)))
(wg-cyclic-nth list (+ pos n))))
(defun wg-util-swap (elt1 elt2 list)
"Return a copy of LIST with ELT1 and ELT2 swapped.
Return nil when ELT1 and ELT2 aren't both present."
(wg-when-let ((p1 (cl-position elt1 list))
(p2 (cl-position elt2 list)))
(wg-move-elt elt1 (wg-move-elt elt2 list p1) p2)))
(defun wg-dups-p (list &rest keys)
"Return non-nil when LIST contains duplicate elements.
Keywords supported: :test :key
\(fn LIST [KEYWORD VALUE]...)"
(let ((test (or (plist-get keys :test) 'eq))
(key (or (plist-get keys :key) 'identity)))
(cl-loop for (elt . rest) on list
for elt = (funcall key elt)
when (cl-find elt rest :test test :key key) return elt)))
(defun wg-string-list-union (&optional list1 list2)
"Return the `union' of LIST1 and LIST2, using `string=' as the test.
This only exists to get rid of duplicate lambdas in a few reductions."
(cl-union list1 list2 :test 'string=))
;;; alists
(defun wg-make-alist (&rest kvps)
"Return a new alist from KVPS."
(let (alist)
(while kvps
(push (cons (car kvps) (cadr kvps)) alist)
(setq kvps (cddr kvps)))
(nreverse alist)))
(defun wg-aget (alist key &optional default)
"Return the value of KEY in ALIST. Uses `assq'.
If PARAM is not found, return DEFAULT which defaults to nil."
(aif (assq key alist) (cdr it) default))
(defun wg-acopy (alist)
"Return a copy of ALIST's toplevel list structure."
(mapcar (lambda (kvp) (cons (car kvp) (cdr kvp))) alist))
(defun wg-aput (alist key value)
"Return a new alist from ALIST with KEY's value set to VALUE."
(let* ((found nil)
(new (wg-docar (kvp alist)
(if (not (eq key (car kvp))) kvp
(setq found (cons key value))))))
(if found new (cons (cons key value) new))))
(defun wg-aremove (alist key)
"`remove' KEY's key-value-pair from ALIST."
(remove (assoc key alist) alist))
;;; symbols and strings
(defun wg-toggle (symbol)
"Toggle SYMBOL's truthiness."
(set symbol (not (symbol-value symbol))))
(defun wg-symcat (&rest symbols-and-strings)
"Return a new interned symbol by concatenating SYMBOLS-AND-STRINGS."
(intern (mapconcat (lambda (obj) (if (symbolp obj) (symbol-name obj) obj))
symbols-and-strings "")))
(defun wg-make-string (times string &optional separator)
"Like `make-string', but includes a separator."
(mapconcat 'identity (make-list times string) (or separator "")))
;;; buffers
(defun wg-get-buffer (buffer-or-name)
"Return BUFFER-OR-NAME's buffer, or error."
(or (get-buffer buffer-or-name)
(error "%S does not identify a buffer" buffer-or-name)))
(defun wg-buffer-name (buffer-or-name)
"Return BUFFER-OR-NAME's `buffer-name', or error."
(buffer-name (wg-get-buffer buffer-or-name)))
(defun wg-buffer-file-name (buffer-or-name)
"Return BUFFER-OR-NAME's `buffer-file-name', or error."
(buffer-file-name (wg-get-buffer buffer-or-name)))
(defun wg-buffer-major-mode (buffer-or-name)
"Return BUFFER's major-mode."
(with-current-buffer buffer-or-name major-mode))
(defun wg-current-buffer-p (buffer-or-name)
"Return t if BUFFER-OR-NAME is the current buffer, nil otherwise."
(eq (wg-get-buffer buffer-or-name) (current-buffer)))
(defmacro wg-buffer-local-setq (buffer var value)
"`setq' VAR to VALUE while BUFFER is current.
Note that this won't make VAR buffer-local if it isn't already."
`(with-current-buffer ,buffer (setq ,var ,value)))
(defun wg-interesting-buffers ()
"Return a list of only the interesting buffers in `buffer-list'."
(cl-remove-if (lambda (bname) (string-match "^ " bname))
(wg-buffer-list-emacs) :key 'buffer-name))
(defun wg-get-first-buffer-matching-regexp (regexp &optional buffer-list)
"Return the first buffer in BUFFER-LIST with a name matching REGEXP.
BUFFER-LIST should contain buffer objects and/or buffer names."
(cl-find regexp (or buffer-list (wg-buffer-list-emacs))
:test 'string-match :key 'wg-buffer-name))
;;; files
(defun wg-write-sexp-to-file (sexp file)
"Write the printable representation of SEXP to FILE."
(with-temp-buffer
(let ((print-level nil) (print-length nil))
(insert (format "%S" sexp)))
(write-file file)))
(defun wg-read-sexp-from-file (file)
"Return a Lisp object from FILE."
(with-temp-buffer
(insert-file-contents file)
(goto-char (point-min))
(read (current-buffer))))
(defalias 'wg-lisp-object-from-file 'wg-read-sexp-from-file)
(defun wg-file-under-root-path-p (root-path file-path)
"Return t when FILE-PATH is under ROOT-PATH, nil otherwise."
(string-match (concat "^" (regexp-quote (expand-file-name root-path)))
(expand-file-name file-path)))
;;; frames
(defun wg-cyclic-nth-from-frame (&optional n frame)
"Return the frame N places away from FRAME in `frame-list' cyclically.
N defaults to 1, and FRAME defaults to `selected-frame'."
(wg-cyclic-nth-from-elt
(or frame (selected-frame)) (frame-list) (or n 1)))
;;; namespace-prefixed defstruct
(defmacro wg-defstruct (prefix name-form &rest slot-defs)
"`defstruct' wrapper that namespace-prefixes all generated functions.
Note: this doesn't yet work with :conc-name, and possibly other
options."
(declare (indent 2))
(let* ((name (if (consp name-form) (car name-form) name-form))
(prefixed-name (wg-symcat prefix "-" name)))
(cl-labels ((rebind (opstr)
(let ((oldfnsym (wg-symcat opstr "-" prefix "-" name)))
`((fset ',(wg-symcat prefix "-" opstr "-" name)
(symbol-function ',oldfnsym))
(fmakunbound ',oldfnsym)))))
;; `eval-and-compile' gets rid of byte-comp warnings ("function `foo' not
;; known to be defined"). We can accomplish this with `declare-function'
;; too, but it annoyingly requires inclusion of the function's arglist,
;; which gets ugly.
`(eval-and-compile
(cl-defstruct ,(if (symbolp name-form) prefixed-name
`(,prefixed-name ,@(cdr name-form)))
,@slot-defs)
,@(rebind "make")
,@(rebind "copy")
',prefixed-name))))
(defmacro wg-with-slots (obj slot-bindings &rest body)
"Bind OBJ's slot values to symbols in BINDS, then eval BODY.
The car of each element of SLOT-BINDINGS is the bound symbol, and
the cadr as the accessor function."
(declare (indent 2))
(wg-with-gensyms (objsym)
`(let* ((,objsym ,obj)
,@(wg-docar (slot slot-bindings)
`(,(car slot) (,(cadr slot) ,objsym))))
,@body)))
;;; misc
(defun wg-fill-keymap (keymap &rest binds)
"Return KEYMAP after defining in it all keybindings in BINDS."
(while binds
(define-key keymap (car binds) (cadr binds))
(setq binds (cddr binds)))
keymap)
(defun wg-add-or-remove-hooks (remove &rest pairs)
"Add FUNCTION to or remove it from HOOK, depending on REMOVE."
(dolist (pair (wg-partition pairs 2))
(funcall (if remove 'remove-hook 'add-hook)
(car pair) (cadr pair))))
(defmacro wg-set-parameter (place parameter value)
"Set PARAMETER to VALUE at PLACE.
This needs to be a macro to allow specification of a setf'able place."
(wg-with-gensyms (p v)
`(let ((,p ,parameter) (,v ,value))
(wg-pickelable-or-error ,p)
(wg-pickelable-or-error ,v)
(setf ,place (wg-aput ,place ,p ,v))
,v)))
;;; uid utils
(defun wg-time-to-b36 ()
"Convert `current-time' into a b36 string."
(apply 'concat (wg-docar (time (current-time))
(wg-int-to-b36 time 4))))
(defun wg-b36-to-time (b36)
"Parse the time in B36 string from UID."
(cl-loop for i from 0 to 8 by 4
collect (wg-b36-to-int (cl-subseq b36 i (+ i 4)))))
(defalias 'wg-uid-to-time 'wg-b36-to-time)
(defun wg-generate-uid (&optional prefix)
"Return a new uid, optionally prefixed by PREFIX."
(concat prefix (wg-time-to-b36) "-" (wg-int-to-b36 string-chars-consed)))
(defun wg-uid-to-seconds (uid)
"Return the `float-time' parsed from UID with `wg-uid-to-time'."
(float-time (wg-uid-to-time uid)))
(defun wg-get-value (arg)
"Get a value of ARG if it exists."
(if (boundp `,arg) (eval arg)))
(defmacro wg-support (mode pkg params)
"Macro to create (de)serialization functions for a buffer.
You need to save/restore a specific MODE which is loaded from a
package PKG. In PARAMS you give local variables to save and a
deserialization function."
`(let ((mode-str (symbol-name ,mode))
(args ,params))
(eval `(defun ,(intern (format "wg-deserialize-%s-buffer" mode-str)) (buffer)
"DeSerialization function created with `wg-support'.
Gets saved variables and runs code to restore a BUFFER."
(when (require ',,pkg nil 'noerror)
(wg-dbind (this-function variables) (wg-buf-special-data buffer)
(let ((default-directory (car variables))
(df (cdr (assoc 'deserialize ',,params)))
(user-vars (car (cdr variables))))
(if df
(funcall df buffer user-vars)
(get-buffer-create wg-default-buffer))
)))))
(eval `(defun ,(intern (format "wg-serialize-%s-buffer" mode-str)) (buffer)
"Serialization function created with `wg-support'.
Saves some variables to restore a BUFFER later."
(when (get-buffer buffer)
(with-current-buffer buffer
(when (eq major-mode ',,mode)
(let ((sf (cdr (assoc 'serialize ',,params)))
(save (cdr (assoc 'save ',,params))))
(list ',(intern (format "wg-deserialize-%s-buffer" mode-str))
(list default-directory
(if sf (funcall sf buffer)
(if save (mapcar 'wg-get-value save)))
))))))))
;; Maybe change a docstring for functions
;;(put (intern (format "wg-serialize-%s-buffer" (symbol-name mode)))
;; 'function-documentation
;; (format "A function created by `wg-support'."))
;; Add function to `wg-special-buffer-serdes-functions' variable
(eval `(add-to-list 'wg-special-buffer-serdes-functions
',(intern (format "wg-serialize-%s-buffer" mode-str)) t))
))
(defvar wg-current-session nil "Current session object.")
(defun wg-current-session (&optional noerror)
"Return `wg-current-session' or scream unless NOERROR."
(or wg-current-session
(unless noerror
(error "No session is defined"))))
(defun wg-read-buffer-mode ()
"Return the buffer switching package (ido or iswitchb) to use, or nil."
(if (eq wg-current-buffer-list-filter-id 'fallback) 'fallback
(cl-case (let (workgroups-mode) (command-remapping 'switch-to-buffer))
(ido-switch-buffer 'ido)
(otherwise 'fallback))))
(defun wg-read-buffer-function (&optional mode)
"Return MODE's or `wg-read-buffer-mode's `read-buffer' function."
(cl-case (or mode (wg-read-buffer-mode))
(ido 'ido-read-buffer)
(fallback (lambda (prompt &optional default require-match)
(let (read-buffer-function)
(read-buffer prompt default require-match))))))
(defun wg-completing-read
(prompt choices &optional pred require-match initial-input history default)
"Do a completing read. The function called depends on what's on."
(cl-ecase (wg-read-buffer-mode)
(ido
(ido-completing-read prompt choices pred require-match
initial-input history default))
(fallback
(completing-read prompt choices pred require-match
initial-input history default))))
;; locate-dominating-file
(defun wg-get-first-existing-dir (&optional dir)
"Test if DIR exists and return it.
If not - try to go to the parent dir and do the same."
(let* ((d (or dir default-directory)))
(if (file-directory-p d) d
(let* ((cur d) (parent (file-name-directory (directory-file-name cur))))
(while (and (> (length cur) (length parent))
(not (file-directory-p parent)))
(message "Test %s" parent)
(setq cur parent)
(setq parent (file-name-directory (directory-file-name cur))))
parent))))
(provide 'workgroups-utils-basic)
;;; workgroups-utils-basic.el ends here
|