I hereby claim:
- I am nerding-it on github.
- I am nerding_it (https://keybase.io/nerding_it) on keybase.
- I have a public key whose fingerprint is 1FCD 2E3C 8D6B 3C1D C215 90B2 40B4 FC66 1F46 B408
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #+OPTIONS: html-postamble:nil | |
| #+OPTIONS: toc:nil | |
| #+OPTIONS: num:nil | |
| #+HTML_HEAD: <style type="text/css"> p.verse { margin-left: 0}</style> | |
| * Invoice | |
| #+BEGIN_VERSE | |
| Your Name | |
| Address Line 1 | |
| Address Line 2 |
| ;;; -*- lexical-binding: t; -*- | |
| (defvar rust--flymake-proc nil) | |
| (defun rust-flymake-backend (report-fn &rest args) | |
| "Flymake backend function for rust" | |
| (flymake-log :debug "Starting flymake rust backend") | |
| (when (process-live-p rust--flymake-proc) | |
| (kill-process rust--flymake-proc)) | |
| (let ((source (current-buffer))) | |
| (save-restriction | |
| (widen) |