Emacs file variable
From Just Solve the File Format Problem
(Difference between revisions)
(Created page with "{{FormatInfo |formattype=electronic |subcat=Elements of File Formats }} By '''Emacs file variable''', we mean the boilerplate runes that appear near the beginning of some [[so...") |
m |
||
Line 7: | Line 7: | ||
# -*- coding: utf-8 -*- | # -*- coding: utf-8 -*- | ||
โ | The variable definitions can help to (for example) interpret or display the | + | The variable definitions can help to (for example) interpret or display the file. |
โ | This syntax apparently originates from the Emacs text editor. Subsets and extensions of it have been borrowed by | + | This syntax apparently originates from the Emacs text editor. Subsets and extensions of it have been borrowed by some other text editors, viewers, and other software. |
== Specifications == | == Specifications == |
Revision as of 21:17, 17 May 2016
By Emacs file variable, we mean the boilerplate runes that appear near the beginning of some source code files, usually delimited by "-*-
". For example:
#!/usr/bin/python # -*- coding: utf-8 -*-
The variable definitions can help to (for example) interpret or display the file.
This syntax apparently originates from the Emacs text editor. Subsets and extensions of it have been borrowed by some other text editors, viewers, and other software.