Skip to content

Instantly share code, notes, and snippets.

@larstvei
Created April 9, 2014 08:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save larstvei/8e06967dd099e0bd2c4c to your computer and use it in GitHub Desktop.
Save larstvei/8e06967dd099e0bd2c4c to your computer and use it in GitHub Desktop.

Input:

```elisp
(defun foo ()
  'foo)
```

Output:

(defun foo ()
  'foo)

Input:

```emacs-lisp
(defun foo ()
  'foo)
```

Output:

(defun foo ()
  'foo)

Input:

```scheme
(defun foo ()
  'foo)
```

Output:

(defun foo ()
  'foo)

Input:

```lisp
(defun foo ()
  'foo)
```

Output:

(defun foo ()
  'foo)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment